| 1007 | } |
| 1008 | |
| 1009 | void VideoDriver_Win32Base::MainLoop() |
| 1010 | { |
| 1011 | this->StartGameThread(); |
| 1012 | |
| 1013 | for (;;) { |
| 1014 | if (_exit_game) break; |
| 1015 | |
| 1016 | this->Tick(); |
| 1017 | this->SleepTillNextTick(); |
| 1018 | } |
| 1019 | |
| 1020 | this->StopGameThread(); |
| 1021 | } |
| 1022 | |
| 1023 | void VideoDriver_Win32Base::ClientSizeChanged(int w, int h, bool force) |
| 1024 | { |
nothing calls this directly
no test coverage detected