Made it possible to disable the rendering subsystem with configure --disable-render

This commit is contained in:
Sam Lantinga 2011-02-08 10:04:09 -08:00
parent 8f205278b1
commit 7133afac5f
15 changed files with 53 additions and 10 deletions

View file

@ -21,6 +21,8 @@
*/
#include "SDL_config.h"
#if !SDL_RENDER_DISABLED
#include "SDL_draw.h"
#include "SDL_blendfillrect.h"
@ -345,4 +347,6 @@ SDL_BlendFillRects(SDL_Surface * dst, const SDL_Rect ** rects, int count,
return status;
}
#endif /* !SDL_RENDER_DISABLED */
/* vi: set ts=4 sw=4 expandtab: */