| 391 | } |
| 392 | |
| 393 | Float2 GetWindowSize() |
| 394 | { |
| 395 | const float width = (float)ANativeWindow_getWidth(AppWindow); |
| 396 | const float height = (float)ANativeWindow_getHeight(AppWindow); |
| 397 | return Float2(width, height); |
| 398 | } |
| 399 | |
| 400 | void UpdateOrientation() |
| 401 | { |
no test coverage detected