| 486 | } |
| 487 | |
| 488 | void AppImplLinux::quit() |
| 489 | { |
| 490 | for( auto &window : mWindows ) { |
| 491 | ::glfwSetWindowShouldClose( window->getNative(), true ); |
| 492 | } |
| 493 | mShouldQuit = true; |
| 494 | } |
| 495 | |
| 496 | float AppImplLinux::getFrameRate() const |
| 497 | { |
nothing calls this directly
no test coverage detected