mirror of https://github.com/mgba-emu/mgba.git
SDL: BUILD_GLES2 should have the GBAGLES2Context
This commit is contained in:
parent
d312aa2c7a
commit
4e3bad6cd6
|
@ -60,6 +60,8 @@ struct SDLSoftwareRenderer {
|
||||||
|
|
||||||
#ifdef BUILD_GL
|
#ifdef BUILD_GL
|
||||||
struct GBAGLContext gl;
|
struct GBAGLContext gl;
|
||||||
|
#elif BUILD_GLES2
|
||||||
|
struct GBAGLES2Context gl;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef USE_PIXMAN
|
#ifdef USE_PIXMAN
|
||||||
|
@ -72,7 +74,6 @@ struct SDLSoftwareRenderer {
|
||||||
EGLSurface surface;
|
EGLSurface surface;
|
||||||
EGLContext context;
|
EGLContext context;
|
||||||
EGL_DISPMANX_WINDOW_T window;
|
EGL_DISPMANX_WINDOW_T window;
|
||||||
struct GBAGLES2Context gl;
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef BUILD_PANDORA
|
#ifdef BUILD_PANDORA
|
||||||
|
|
Loading…
Reference in New Issue