Commit 3a8b8994285d67471b38276c6ee75173498e8f98

Sylvain Becker 2019-10-23T11:07:11

Android: remove eglGetProcAdded busted comment (bug #4040)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
diff --git a/src/video/SDL_egl.c b/src/video/SDL_egl.c
index 19d0a09..f1f55ca 100644
--- a/src/video/SDL_egl.c
+++ b/src/video/SDL_egl.c
@@ -226,7 +226,6 @@ SDL_EGL_GetProcAddress(_THIS, const char *proc)
     const SDL_bool is_egl_15_or_later = eglver >= ((((Uint32) 1) << 16) | 5);
     void *retval = NULL;
 
-    /* eglGetProcAddress is busted on Android http://code.google.com/p/android/issues/detail?id=7681 */
     /* EGL 1.5 can use eglGetProcAddress() for any symbol. 1.4 and earlier can't use it for core entry points. */
     if (!retval && is_egl_15_or_later && _this->egl_data->eglGetProcAddress) {
         retval = _this->egl_data->eglGetProcAddress(proc);
@@ -244,7 +243,6 @@ SDL_EGL_GetProcAddress(_THIS, const char *proc)
         }
     }
 
-    /* eglGetProcAddress is busted on Android http://code.google.com/p/android/issues/detail?id=7681 */
     /* Try eglGetProcAddress if we on <= 1.4 and still searching... */
     if (!retval && !is_egl_15_or_later && _this->egl_data->eglGetProcAddress) {
         retval = _this->egl_data->eglGetProcAddress(proc);