mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Merge pull request #10827 from webgeek1234/master
Fix libretro compile for gles platforms
This commit is contained in:
commit
01be9ff8cf
1 changed files with 2 additions and 2 deletions
|
@ -8,9 +8,9 @@ class LibretroGLContext : public LibretroHWRenderContext {
|
|||
public:
|
||||
LibretroGLContext()
|
||||
#ifdef USING_GLES2
|
||||
: HWRenderContext(RETRO_HW_CONTEXT_OPENGLES2)
|
||||
: LibretroHWRenderContext(RETRO_HW_CONTEXT_OPENGLES2)
|
||||
#elif defined(HAVE_OPENGL_CORE)
|
||||
: HWRenderContext(RETRO_HW_CONTEXT_OPENGL_CORE, 3, 1)
|
||||
: LibretroHWRenderContext(RETRO_HW_CONTEXT_OPENGL_CORE, 3, 1)
|
||||
#else
|
||||
: LibretroHWRenderContext(RETRO_HW_CONTEXT_OPENGL)
|
||||
#endif
|
||||
|
|
Loading…
Add table
Reference in a new issue