| 219 | } |
| 220 | |
| 221 | void MainLoopController::processOperatingMode() |
| 222 | { |
| 223 | SimulationView::get().draw(); |
| 224 | |
| 225 | pushGlobalStyle(); |
| 226 | processMenubar(); |
| 227 | MainLoopEntityController::get().process(); |
| 228 | OverlayController::get().process(); |
| 229 | SimulationView::get().processSimulationScrollbars(); |
| 230 | popGlobalStyle(); |
| 231 | |
| 232 | FpsController::get().processForceFps(WindowController::get().getFps()); |
| 233 | |
| 234 | if (glfwWindowShouldClose(WindowController::get().getWindowData().window)) { |
| 235 | scheduleClosing(); |
| 236 | } |
| 237 | } |
| 238 | |
| 239 | void MainLoopController::processScheduleExit() |
| 240 | { |
nothing calls this directly
no test coverage detected