| 2487 | } // DefaultScheduler::processFrame |
| 2488 | |
| 2489 | void |
| 2490 | DefaultScheduler::timelineStepOne(RenderDirectionEnum direction) |
| 2491 | { |
| 2492 | QMutexLocker k(&_currentTimeMutex); |
| 2493 | |
| 2494 | if (direction == eRenderDirectionForward) { |
| 2495 | ++_currentTime; |
| 2496 | } else { |
| 2497 | --_currentTime; |
| 2498 | } |
| 2499 | } |
| 2500 | |
| 2501 | void |
| 2502 | DefaultScheduler::timelineGoTo(int time) |
nothing calls this directly
no test coverage detected