mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-06 04:52:16 +00:00
db69800fd0
git-svn-id: https://svn.eduke32.com/eduke32@4084 1a8010ca-5511-0410-912e-c29ae57300e0
47 lines
905 B
C
47 lines
905 B
C
// SDL interface layer
|
|
// for the Build Engine
|
|
// by Jonathon Fowler (jf@jonof.id.au)
|
|
|
|
#ifndef __build_interface_layer__
|
|
#define __build_interface_layer__ SDL
|
|
|
|
#include "sdl_inc.h"
|
|
#include "compat.h"
|
|
#include "baselayer.h"
|
|
|
|
#ifdef _WIN32
|
|
HWND win_gethwnd(void);
|
|
HINSTANCE win_gethinstance(void);
|
|
#endif
|
|
|
|
#include "sdlappicon.h"
|
|
|
|
#if (SDL_MAJOR_VERSION == 1 && SDL_MINOR_VERSION < 3) // SDL 1.2
|
|
int32_t SDL_WaitEventTimeout(SDL_Event *event, int32_t timeout);
|
|
#endif
|
|
|
|
static inline void idle_waitevent_timeout(uint32_t timeout)
|
|
{
|
|
SDL_WaitEventTimeout(NULL, timeout);
|
|
}
|
|
|
|
static inline void idle_waitevent(void)
|
|
{
|
|
SDL_WaitEvent(NULL);
|
|
}
|
|
|
|
static inline void idle(void)
|
|
{
|
|
#ifndef _WIN32
|
|
usleep(1000);
|
|
#else
|
|
Sleep(1);
|
|
#endif
|
|
}
|
|
|
|
#else
|
|
#if (__build_interface_layer__ != SDL)
|
|
#error "Already using the " __build_interface_layer__ ". Can't now use SDL."
|
|
#endif
|
|
#endif // __build_interface_layer__
|
|
|