X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=libpicofe.git;a=blobdiff_plain;f=gl.h;h=cb4807105148b2068a665edaad5a28beae8efb5c;hp=9925dac14671fa96cec34f9d788f68c186701942;hb=HEAD;hpb=b98018548fb60e1ed7d417dae0e54864a9d2d272 diff --git a/gl.h b/gl.h index 9925dac..bddacdc 100644 --- a/gl.h +++ b/gl.h @@ -1,13 +1,39 @@ +#ifndef LIBPICOFE_GL_H +#define LIBPICOFE_GL_H + #ifdef HAVE_GLES -int gl_init(void *display, void *window); -int gl_flip(const void *fb, int w, int h); +int gl_init(void *display, void *window, int *quirks, int w, int h); +void gl_announce(void); +int gl_flip(const void *fb, int w, int h); void gl_finish(void); +/* for external flips */ +extern void *gl_es_display; +extern void *gl_es_surface; + #else -static __inline int gl_init(void *display, void *window) { return -1; } -static __inline int gl_flip(const void *fb, int w, int h) { return -1; } -static __inline void gl_finish(void) {} +static __inline int gl_init(void *display, void *window, int *quirks, int w, int h) +{ + return -1; +} +static __inline void gl_announce(void) +{ +} +static __inline int gl_flip(const void *fb, int w, int h) +{ + return -1; +} +static __inline void gl_finish(void) +{ +} + +#define gl_es_display (void *)0 +#define gl_es_surface (void *)0 #endif + +#define GL_QUIRK_ACTIVATE_RECREATE 1 + +#endif // LIBPICOFE_GL_H