| 70 | } |
| 71 | |
| 72 | void OnResize(LLGL::Window& sender, const LLGL::Extent2D& clientAreaSize) override |
| 73 | { |
| 74 | auto videoMode = context_.GetVideoMode(); |
| 75 | videoMode.resolution = clientAreaSize; |
| 76 | context_.SetVideoMode(videoMode); |
| 77 | } |
| 78 | |
| 79 | private: |
| 80 |
nothing calls this directly
no test coverage detected