X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Flibgame%2Fsdl.h;h=ef2cfd25e243a7085e96e50de988fc358d5c4861;hb=2d9d9498b036092736bc61c891250200ad767bc1;hp=00b2698ad5cb209044da930b55a7ca8c3d3e54a0;hpb=2486a7a849210371bb59e733e37b0271a4332d8b;p=rocksndiamonds.git diff --git a/src/libgame/sdl.h b/src/libgame/sdl.h index 00b2698a..ef2cfd25 100644 --- a/src/libgame/sdl.h +++ b/src/libgame/sdl.h @@ -86,6 +86,7 @@ typedef SDL_MouseMotionEvent MotionEvent; #if defined(TARGET_SDL2) typedef SDL_TouchFingerEvent FingerEvent; typedef SDL_TextInputEvent TextEvent; +typedef SDL_Event PauseResumeEvent; typedef SDL_WindowEvent WindowEvent; #endif typedef SDL_KeyboardEvent KeyEvent; @@ -435,6 +436,9 @@ struct MouseCursorInfo /* SDL function definitions */ +boolean SDLSetNativeSurface(SDL_Surface **); +SDL_Surface *SDLGetNativeSurface(SDL_Surface *); + #if defined(TARGET_SDL2) SDL_Surface *SDL_DisplayFormat(SDL_Surface *); void SDLSetWindowScaling(int); @@ -463,7 +467,11 @@ void SDLPutPixel(Bitmap *, int, int, Pixel); void SDLInvertArea(Bitmap *, int, int, int, int, Uint32); void SDLCopyInverseMasked(Bitmap *, Bitmap *, int, int, int, int, int, int); +#if 1 +Bitmap *SDLZoomBitmap(Bitmap *, int, int); +#else void SDLZoomBitmap(Bitmap *, Bitmap *); +#endif Bitmap *SDLLoadImage(char *);