| 324 | } |
| 325 | |
| 326 | static void WindowSizeChanged(int w, int h) { |
| 327 | currentWindowWidth = w; |
| 328 | currentWindowHeight = h; |
| 329 | |
| 330 | if (app.mainRenderContext) { |
| 331 | app.mainRenderContext->OnResize(w, h); |
| 332 | } |
| 333 | |
| 334 | app.OnApplicationResize(w, h); |
| 335 | } |
| 336 | |
| 337 | // Process the next main command. |
| 338 | static void HandleCmd(android_app *appState, int32_t cmd) { |
no test coverage detected