From 4788b58c7290ad4a4a161d6bc69bc184acc2ef66 Mon Sep 17 00:00:00 2001 From: Mike Pavone Date: Tue, 23 Jul 2013 23:01:03 -0700 Subject: Started work on OpenGL support in new branch --HG-- branch : opengl --- render.h | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'render.h') diff --git a/render.h b/render.h index 24456be..339dd36 100644 --- a/render.h +++ b/render.h @@ -4,9 +4,17 @@ #include "vdp.h" #include "psg.h" #include "ym2612.h" + +typedef struct { + void *oddbuf; + void *evenbuf; + int stride; +} surface_info; + uint32_t render_map_color(uint8_t r, uint8_t g, uint8_t b); +surface_info render_alloc_surfaces(); uint8_t render_depth(); -void render_init(int width, int height, char * title, uint32_t fps); +void render_init(int width, int height, char * title, uint32_t fps, uint8_t use_gl); void render_context(vdp_context * context); void render_wait_quit(vdp_context * context); void render_wait_psg(psg_context * context); -- cgit v1.2.3