| 3149 | } |
| 3150 | |
| 3151 | void |
| 3152 | RenderEngine::waitForEngineToQuit_not_main_thread() |
| 3153 | { |
| 3154 | if (_imp->scheduler) { |
| 3155 | _imp->scheduler->waitForThreadToQuit_not_main_thread(); |
| 3156 | } |
| 3157 | |
| 3158 | if (_imp->currentFrameScheduler) { |
| 3159 | _imp->currentFrameScheduler->waitForThreadToQuit_not_main_thread(); |
| 3160 | } |
| 3161 | } |
| 3162 | |
| 3163 | void |
| 3164 | RenderEngine::waitForEngineToQuit_main_thread(bool allowRestart) |
no test coverage detected