Skip to content

Commit

Permalink
[egl/mir] Need eglGetProc to find gl 4.5 core profile extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
BrandonSchaefer committed Sep 22, 2017
1 parent e5cfb58 commit 466ba57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/video/SDL_egl.c
Expand Up @@ -206,7 +206,7 @@ SDL_EGL_GetProcAddress(_THIS, const char *proc)
void *retval;

/* eglGetProcAddress is busted on Android http://code.google.com/p/android/issues/detail?id=7681 */
#if !defined(SDL_VIDEO_DRIVER_ANDROID) && !defined(SDL_VIDEO_DRIVER_MIR)
#if !defined(SDL_VIDEO_DRIVER_ANDROID)
if (_this->egl_data->eglGetProcAddress) {
retval = _this->egl_data->eglGetProcAddress(proc);
if (retval) {
Expand Down

0 comments on commit 466ba57

Please sign in to comment.