| 131 | } |
| 132 | |
| 133 | void RenderLoopPrivate::notifyFrameDropped() |
| 134 | { |
| 135 | Q_ASSERT(pendingFrameCount > 0); |
| 136 | pendingFrameCount--; |
| 137 | |
| 138 | if (!inhibitCount && pendingReschedule) { |
| 139 | scheduleNextRepaint(); |
| 140 | } |
| 141 | } |
| 142 | |
| 143 | void RenderLoopPrivate::notifyFrameCompleted(std::chrono::nanoseconds timestamp, std::optional<RenderTimeSpan> renderTime, PresentationMode mode, OutputFrame *frame) |
| 144 | { |