mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-17 07:49:21 +00:00
Fix compiling Dolphin on devices that provide crazy GLES drivers
This commit is contained in:
parent
b7db96e2e5
commit
3ac7ee4623
3 changed files with 3 additions and 2 deletions
|
@ -141,7 +141,7 @@ bool cInterfaceEGL::Create(void *&window_handle)
|
|||
return false;
|
||||
}
|
||||
|
||||
GLWin.egl_surf = eglCreateWindowSurface(GLWin.egl_dpy, config, GLWin.win, NULL);
|
||||
GLWin.egl_surf = eglCreateWindowSurface(GLWin.egl_dpy, config, (NativeWindowType)GLWin.win, NULL);
|
||||
if (!GLWin.egl_surf) {
|
||||
ERROR_LOG(VIDEO, "Error: eglCreateWindowSurface failed\n");
|
||||
return false;
|
||||
|
|
|
@ -20,6 +20,7 @@
|
|||
#include <EGL/egl.h>
|
||||
#ifdef USE_GLES
|
||||
#include <GLES2/gl2.h>
|
||||
#include <X11/Xutil.h>
|
||||
#else
|
||||
#include <GL/glxew.h>
|
||||
#include <GL/gl.h>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue