X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=libpicofe.git;a=blobdiff_plain;f=gl.h;h=cb4807105148b2068a665edaad5a28beae8efb5c;hp=8b7d43cf99611ee21c29aacb3848ad735880e92e;hb=HEAD;hpb=c668921a45b7a7f5f548d0e09836f143f56b4ae0 diff --git a/gl.h b/gl.h index 8b7d43c..b4cbdb0 100644 --- a/gl.h +++ b/gl.h @@ -3,10 +3,14 @@ #ifdef HAVE_GLES -int gl_init(void *display, void *window, int *quirks); +int gl_init(void *display, int *quirks); +int gl_create(void *window, int *quirks, int w, int h); void gl_announce(void); +int gl_flip_v(const void *fb, int w, int h, const float *vertices); int gl_flip(const void *fb, int w, int h); -void gl_finish(void); +void gl_clear(void); +void gl_destroy(void); +void gl_shutdown(void); /* for external flips */ extern void *gl_es_display; @@ -14,20 +18,29 @@ extern void *gl_es_surface; #else -static __inline int gl_init(void *display, void *window, int *quirks) +static __inline int gl_init(void *display, int *quirks) { return -1; } -static void gl_announce(void) + +static __inline int gl_create(void *window, int *quirks, int w, int h) { + return -1; } -static __inline int gl_flip(const void *fb, int w, int h) +static __inline void gl_announce(void) +{ +} +static __inline int gl_flip_v(const void *fb, int w, int h, const float *vertices) { return -1; } -static __inline void gl_finish(void) +static __inline int gl_flip(const void *fb, int w, int h) { + return -1; } +static __inline void gl_clear(void) {} +static __inline void gl_destroy(void) {} +static __inline void gl_shutdown(void) {} #define gl_es_display (void *)0 #define gl_es_surface (void *)0 @@ -35,5 +48,7 @@ static __inline void gl_finish(void) #endif #define GL_QUIRK_ACTIVATE_RECREATE 1 +#define GL_QUIRK_SCALING_NEAREST 2 +#define GL_QUIRK_VSYNC_ON 4 #endif // LIBPICOFE_GL_H