comparison src/render/software/SDL_blendfillrect.c @ 5231:710d00cb3a6a

Made it possible to disable the rendering subsystem with configure --disable-render
author Sam Lantinga <slouken@libsdl.org>
date Tue, 08 Feb 2011 10:04:09 -0800
parents d976b67150c5
children b530ef003506
comparison
equal deleted inserted replaced
5230:5d01d426f2ea 5231:710d00cb3a6a
18 18
19 Sam Lantinga 19 Sam Lantinga
20 slouken@libsdl.org 20 slouken@libsdl.org
21 */ 21 */
22 #include "SDL_config.h" 22 #include "SDL_config.h"
23
24 #if !SDL_RENDER_DISABLED
23 25
24 #include "SDL_draw.h" 26 #include "SDL_draw.h"
25 #include "SDL_blendfillrect.h" 27 #include "SDL_blendfillrect.h"
26 28
27 29
343 status = func(dst, rect, blendMode, r, g, b, a); 345 status = func(dst, rect, blendMode, r, g, b, a);
344 } 346 }
345 return status; 347 return status;
346 } 348 }
347 349
350 #endif /* !SDL_RENDER_DISABLED */
351
348 /* vi: set ts=4 sw=4 expandtab: */ 352 /* vi: set ts=4 sw=4 expandtab: */