| 3163 | } |
| 3164 | |
| 3165 | void |
| 3166 | RenderEngine::waitForEngineToQuit_not_main_thread() |
| 3167 | { |
| 3168 | if (_imp->scheduler) { |
| 3169 | _imp->scheduler->waitForThreadToQuit_not_main_thread(); |
| 3170 | } |
| 3171 | |
| 3172 | if (_imp->currentFrameScheduler) { |
| 3173 | _imp->currentFrameScheduler->waitForThreadToQuit_not_main_thread(); |
| 3174 | } |
| 3175 | } |
| 3176 | |
| 3177 | void |
| 3178 | RenderEngine::waitForEngineToQuit_main_thread(bool allowRestart) |
no test coverage detected