| 490 | } |
| 491 | |
| 492 | void PiuContentSetDuration(PiuContent* self, double duration) |
| 493 | { |
| 494 | PiuIdle selfIdle = PiuContentUseIdle(self); |
| 495 | if (duration < 0) |
| 496 | duration = 0; |
| 497 | selfIdle->duration = duration; |
| 498 | PiuContentSetTime(self, selfIdle->time); |
| 499 | } |
| 500 | |
| 501 | void PiuContentSetFraction(PiuContent* self, double fraction) |
| 502 | { |
no test coverage detected