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