| 474 | } |
| 475 | |
| 476 | void Window_ProcessEvents(float delta) { |
| 477 | if (pendingResize) { |
| 478 | pendingResize = false; |
| 479 | UpdateDimensions(); |
| 480 | Event_RaiseVoid(&WindowEvents.Resized); |
| 481 | } |
| 482 | |
| 483 | if (pendingClose) { |
| 484 | pendingClose = false; |
| 485 | Window_Main.Exists = false; |
| 486 | Event_RaiseVoid(&WindowEvents.Closing); |
| 487 | return; |
| 488 | } |
| 489 | |
| 490 | ProcessConsoleEvents(delta); |
| 491 | } |
| 492 | |
| 493 | void Gamepads_PreInit(void) { } |
| 494 |
nothing calls this directly
no test coverage detected