X-Git-Url: https://git.artsoft.org/?p=rocksndiamonds.git;a=blobdiff_plain;f=src%2Flibgame%2Fsdl.c;h=2406489587d0c74b67a7a1cd7d9d92c661d8e321;hp=9403b2a776e8a780c78360f871560cc6ac4ab30b;hb=27a283729bf1e7b956c5ceba87215a6d177b4bc7;hpb=b8114966908299df586165e00446f21c2ce343bb diff --git a/src/libgame/sdl.c b/src/libgame/sdl.c index 9403b2a7..24064895 100644 --- a/src/libgame/sdl.c +++ b/src/libgame/sdl.c @@ -548,9 +548,9 @@ void sge_PutPixel(SDL_Surface *surface, Sint16 x, Sint16 y, Uint32 color) } void sge_PutPixelRGB(SDL_Surface *surface, Sint16 x, Sint16 y, - Uint8 R, Uint8 G, Uint8 B) + Uint8 r, Uint8 g, Uint8 b) { - sge_PutPixel(surface, x, y, SDL_MapRGB(surface->format, R, G, B)); + sge_PutPixel(surface, x, y, SDL_MapRGB(surface->format, r, g, b)); } Sint32 sge_CalcYPitch(SDL_Surface *dest, Sint16 y) @@ -865,6 +865,30 @@ void sge_LineRGB(SDL_Surface *Surface, Sint16 x1, Sint16 y1, Sint16 x2, } +/* + ----------------------------------------------------------------------------- + quick (no, it's slow) and dirty hack to "invert" rectangle inside SDL surface + ----------------------------------------------------------------------------- +*/ + +inline void SDLInvertArea(Bitmap *bitmap, int src_x, int src_y, + int width, int height, Uint32 color) +{ + SDL_Surface *surface = bitmap->surface; + int x, y; + + for (y=src_y; y < src_y + height; y++) + { + for (x=src_x; x < src_x + width; x++) + { + Uint32 pixel = SDLGetPixel(bitmap, x, y); + + sge_PutPixel(surface, x, y, pixel == BLACK_PIXEL ? color : BLACK_PIXEL); + } + } +} + + /* ========================================================================= */ /* The following functions were taken from the SDL_gfx library version 2.0.3 */ /* (Rotozoomer) by Andreas Schiffler */