Mercurial > sdl-ios-xcode
comparison src/render/software/SDL_drawpoint.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 | d72793305335 |
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_drawpoint.h" | 27 #include "SDL_drawpoint.h" |
26 | 28 |
27 | 29 |
112 } | 114 } |
113 } | 115 } |
114 return 0; | 116 return 0; |
115 } | 117 } |
116 | 118 |
119 #endif /* !SDL_RENDER_DISABLED */ | |
120 | |
117 /* vi: set ts=4 sw=4 expandtab: */ | 121 /* vi: set ts=4 sw=4 expandtab: */ |