| 53 | } |
| 54 | |
| 55 | auto PAGProfilingTask::onFrameFlush(double progress) -> void { |
| 56 | PAGPlayTask::onFrameFlush(progress); |
| 57 | if (currentFrame == 0) { |
| 58 | return; |
| 59 | } |
| 60 | performanceData->renderingTime += pagPlayer->renderingTime(); |
| 61 | performanceData->presentingTime += pagPlayer->presentingTime(); |
| 62 | performanceData->imageDecodingTime += pagPlayer->imageDecodingTime(); |
| 63 | } |
| 64 | |
| 65 | } // namespace pag |
nothing calls this directly
no test coverage detected