diff options
Diffstat (limited to 'libwinnie/src/sdl')
-rw-r--r-- | libwinnie/src/sdl/gfx.cc | 10 | ||||
-rw-r--r-- | libwinnie/src/sdl/gfx.h | 4 |
2 files changed, 0 insertions, 14 deletions
diff --git a/libwinnie/src/sdl/gfx.cc b/libwinnie/src/sdl/gfx.cc index 644c9d4..bab4e7b 100644 --- a/libwinnie/src/sdl/gfx.cc +++ b/libwinnie/src/sdl/gfx.cc @@ -130,11 +130,6 @@ get_clipping_rect() } void -set_cursor_visibility(bool visible) -{ -} - -void gfx_update(const Rect &upd_rect) { if (SDL_MUSTLOCK(fbsurf)) { @@ -161,11 +156,6 @@ gfx_update(const Rect &upd_rect) } void -wait_vsync() -{ -} - -void get_rgb_order(int *r, int *g, int *b) { *r = fbsurf->format->Rshift / 8; diff --git a/libwinnie/src/sdl/gfx.h b/libwinnie/src/sdl/gfx.h index 36e7e36..b0dfa2e 100644 --- a/libwinnie/src/sdl/gfx.h +++ b/libwinnie/src/sdl/gfx.h @@ -36,12 +36,8 @@ int get_color_depth(); void set_clipping_rect(const Rect &clip_rect); const Rect &get_clipping_rect(); -void set_cursor_visibility(bool visible); - void gfx_update(const Rect &rect); -void wait_vsync(); // vertical synchronization - void get_rgb_order(int *r, int *g, int *b); #endif // GFX_H_ |