| 320 | } |
| 321 | |
| 322 | void PiuSVGImageSync(void* it) |
| 323 | { |
| 324 | PiuSVGImage* self = it; |
| 325 | if ((*self)->dcs) { |
| 326 | double time = PiuContentUseIdle(it)->time; |
| 327 | GDrawCommandFrame *dcf = gdraw_command_sequence_get_frame_by_elapsed((*self)->dcs, time); |
| 328 | if ((*self)->dcf != dcf) { |
| 329 | (*self)->dcf = dcf; |
| 330 | (*self)->transforming = 1; |
| 331 | PiuSVGImageInvalidate(self, NULL); |
| 332 | } |
| 333 | } |
| 334 | } |
| 335 | |
| 336 | void PiuSVGImageUnbind(void* it, PiuApplication* application, PiuView* view) |
| 337 | { |
nothing calls this directly
no test coverage detected