From 466ba57d42d244e80357e9ad3011c50af30ed225 Mon Sep 17 00:00:00 2001 From: Brandon Schaefer Date: Thu, 21 Sep 2017 18:38:07 -0700 Subject: [PATCH] [egl/mir] Need eglGetProc to find gl 4.5 core profile extensions --- src/video/SDL_egl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video/SDL_egl.c b/src/video/SDL_egl.c index a0c592bd83577..9ccc2c3e1c8a8 100644 --- a/src/video/SDL_egl.c +++ b/src/video/SDL_egl.c @@ -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) {