diff options
author | Michael Pavone <pavone@retrodev.com> | 2015-05-20 19:05:11 -0700 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2015-05-20 19:05:11 -0700 |
commit | 863ea0b3f8b8879ac3092f391a68dc95d0d04de2 (patch) | |
tree | 51a87b4b49eb235fff95efee88dbed27eaba3878 /render.h | |
parent | 265a11e776d9708483024f48a9e0eaaf6686d00b (diff) |
Upgrade to SDL 2.0 and drop support for the non-OpenGL render path
Diffstat (limited to 'render.h')
-rw-r--r-- | render.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -18,8 +18,7 @@ typedef struct { uint32_t render_map_color(uint8_t r, uint8_t g, uint8_t b); void render_alloc_surfaces(vdp_context * context); -uint8_t render_depth(); -void render_init(int width, int height, char * title, uint32_t fps, uint8_t fullscreen, uint8_t use_gl); +void render_init(int width, int height, char * title, uint32_t fps, uint8_t fullscreen); void render_context(vdp_context * context); void render_wait_quit(vdp_context * context); void render_wait_psg(psg_context * context); |