| 2513 | } |
| 2514 | |
| 2515 | void |
| 2516 | DefaultScheduler::getFrameRangeToRender(int& first, |
| 2517 | int& last) const |
| 2518 | { |
| 2519 | OutputSchedulerThreadStartArgsPtr args = getCurrentRunArgs(); |
| 2520 | |
| 2521 | first = args->firstFrame; |
| 2522 | last = args->lastFrame; |
| 2523 | } |
| 2524 | |
| 2525 | void |
| 2526 | DefaultScheduler::handleRenderFailure(const std::string& errorMessage) |
nothing calls this directly
no test coverage detected