diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-09-08 19:38:59 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-09-08 19:38:59 +0300 |
commit | f1e48fffe3c224ee81cdc1f85dbd0179b202d457 (patch) | |
tree | a180b55377204e85c52a4accf35ecc964f2d2cca /src/utils/sdl2helper.cpp | |
parent | 29557a45208b1576e293427090360f6d794ea6b3 (diff) | |
download | plus-f1e48fffe3c224ee81cdc1f85dbd0179b202d457.tar.gz plus-f1e48fffe3c224ee81cdc1f85dbd0179b202d457.tar.bz2 plus-f1e48fffe3c224ee81cdc1f85dbd0179b202d457.tar.xz plus-f1e48fffe3c224ee81cdc1f85dbd0179b202d457.zip |
Split SDL_WaitEventTimeout/SDL_PollEvent into lower level SDL function calls.
Diffstat (limited to 'src/utils/sdl2helper.cpp')
-rw-r--r-- | src/utils/sdl2helper.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/utils/sdl2helper.cpp b/src/utils/sdl2helper.cpp index 7648ccc2b..da5b15e41 100644 --- a/src/utils/sdl2helper.cpp +++ b/src/utils/sdl2helper.cpp @@ -30,6 +30,7 @@ PRAGMA48(GCC diagnostic push) PRAGMA48(GCC diagnostic ignored "-Wshadow") +#include <SDL_events.h> #include <SDL_syswm.h> PRAGMA48(GCC diagnostic pop) @@ -194,4 +195,14 @@ void SDL::WaitThread(SDL_Thread *const thread) SDL_WaitThread(thread, nullptr); } +bool SDL::PollEvent(SDL_Event *event) +{ + SDL_PumpEvents(); + return SDL_PeepEvents(event, + 1, + SDL_GETEVENT, + SDL_FIRSTEVENT, + SDL_LASTEVENT) > 0; +} + #endif // USE_SDL2 |