| 32 | } |
| 33 | |
| 34 | static TimeRange MakeTimeRange(Frame start, Frame end, float timeScale) { |
| 35 | auto startFrame = static_cast<Frame>(roundf(start * timeScale)); |
| 36 | auto endFrame = static_cast<Frame>(roundf(end * timeScale)); |
| 37 | return {startFrame, endFrame}; |
| 38 | } |
| 39 | |
| 40 | void BitmapComposition::updateStaticTimeRanges() { |
| 41 | staticTimeRanges = {}; |
no outgoing calls
no test coverage detected