| 212 | |
| 213 | |
| 214 | bool is_valid(animation const &p_animation) |
| 215 | { |
| 216 | return (p_animation.get_fps() != 0) |
| 217 | && (p_animation.get_output_width() != 0) |
| 218 | && (p_animation.get_output_height() != 0) |
| 219 | && (p_animation.get_num_parts() != 0); |
| 220 | } |
| 221 | |
| 222 | |
| 223 | bool operator < (animation_position const &p_first, animation_position const &p_second) |
no test coverage detected