diff 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
line wrap: on
line diff
--- a/src/render/software/SDL_blendfillrect.c	Mon Feb 07 22:57:33 2011 -0800
+++ b/src/render/software/SDL_blendfillrect.c	Tue Feb 08 10:04:09 2011 -0800
@@ -21,6 +21,8 @@
 */
 #include "SDL_config.h"
 
+#if !SDL_RENDER_DISABLED
+
 #include "SDL_draw.h"
 #include "SDL_blendfillrect.h"
 
@@ -345,4 +347,6 @@
     return status;
 }
 
+#endif /* !SDL_RENDER_DISABLED */
+
 /* vi: set ts=4 sw=4 expandtab: */