MaxAnimationFrameResolution returns the maximum allowed animation frame resolution
(o *options.Options)
| 38 | |
| 39 | // MaxAnimationFrameResolution returns the maximum allowed animation frame resolution |
| 40 | func (s *Checker) MaxAnimationFrameResolution(o *options.Options) int { |
| 41 | return o.GetInt( |
| 42 | keys.MaxAnimationFrameResolution, |
| 43 | s.config.MaxAnimationFrameResolution, |
| 44 | ) |
| 45 | } |
| 46 | |
| 47 | // MaxResultDimension returns the maximum allowed result image dimension |
| 48 | func (s *Checker) MaxResultDimension(o *options.Options) int { |