X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Flibgame%2Fsdl.c;fp=src%2Flibgame%2Fsdl.c;h=89d2af1efb8c28896ca76876bdec6f67b8509a91;hb=30797dcb6034d34040a7888cf2adfe5cd48ec986;hp=e60d760d6265eab0a93499945ef319ee5735ef50;hpb=7c117e147cc14c25b7e4d8e93fb7e2bc16499a0f;p=rocksndiamonds.git diff --git a/src/libgame/sdl.c b/src/libgame/sdl.c index e60d760d..89d2af1e 100644 --- a/src/libgame/sdl.c +++ b/src/libgame/sdl.c @@ -2233,7 +2233,7 @@ static int zoomSurfaceY(SDL_Surface * src, SDL_Surface * dst) } // ---------------------------------------------------------------------------- -// zoomSurface() +// SDLZoomSurface() // // Zooms a 32bit or 8bit 'src' surface to newly created 'dst' surface. // 'zoomx' and 'zoomy' are scaling factors for width and height. @@ -2241,7 +2241,7 @@ static int zoomSurfaceY(SDL_Surface * src, SDL_Surface * dst) // into a 32bit RGBA format on the fly. // ---------------------------------------------------------------------------- -static SDL_Surface *zoomSurface(SDL_Surface *src, int dst_width, int dst_height) +SDL_Surface *SDLZoomSurface(SDL_Surface *src, int dst_width, int dst_height) { SDL_Surface *zoom_src = NULL; SDL_Surface *zoom_dst = NULL; @@ -2352,7 +2352,7 @@ Bitmap *SDLZoomBitmap(Bitmap *src_bitmap, int dst_width, int dst_height) dst_bitmap->height = dst_height; // create zoomed temporary surface from source surface - dst_surface = zoomSurface(src_surface, dst_width, dst_height); + dst_surface = SDLZoomSurface(src_surface, dst_width, dst_height); // create native format destination surface from zoomed temporary surface SDLSetNativeSurface(&dst_surface);