derekf pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=855f59da8d2f59dd64e9a7a0f84ea67f1d06fc73
commit 855f59da8d2f59dd64e9a7a0f84ea67f1d06fc73 Author: Derek Foreman <der...@osg.samsung.com> Date: Tue Jul 18 16:10:31 2017 -0500 gl_common: Stop looking for eglCreate/DestroyImageOES These aren't a thing. the GL_OES_EGL_image_base extension doesn't exist and the GL_OES_EGL_image extension doesn't extend egl, because it's a gl extension. So let's stop being the only google match for these nonsense strings. --- src/modules/evas/engines/gl_common/evas_gl_context.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/modules/evas/engines/gl_common/evas_gl_context.c b/src/modules/evas/engines/gl_common/evas_gl_context.c index f4aaa2ede3..3595b07821 100644 --- a/src/modules/evas/engines/gl_common/evas_gl_context.c +++ b/src/modules/evas/engines/gl_common/evas_gl_context.c @@ -327,14 +327,10 @@ evas_gl_symbols(void *(*GetProcAddress)(const char *name), const char *extsn EIN { FINDSYMN(eglsym_eglCreateImageKHR, "eglCreateImageKHR", "EGL_KHR_image_base", secsym_func_void_ptr); FINDSYMN(eglsym_eglCreateImageKHR, "eglCreateImageKHR", "EGL_KHR_image", secsym_func_void_ptr); - FINDSYMN(eglsym_eglCreateImageKHR, "eglCreateImageOES", "GL_OES_EGL_image_base", secsym_func_void_ptr); - FINDSYMN(eglsym_eglCreateImageKHR, "eglCreateImageOES", "GL_OES_EGL_image", secsym_func_void_ptr); if (eglsym_eglCreateImageKHR) { FINDSYMN(secsym_eglDestroyImage, "eglDestroyImageKHR", "EGL_KHR_image_base", secsym_func_uint); FINDSYMN(secsym_eglDestroyImage, "eglDestroyImageKHR", "EGL_KHR_image", secsym_func_uint); - FINDSYMN(secsym_eglDestroyImage, "eglDestroyImageOES", "GL_OES_EGL_image_base", secsym_func_uint); - FINDSYMN(secsym_eglDestroyImage, "eglDestroyImageOES", "GL_OES_EGL_image", secsym_func_uint); } else { @@ -350,11 +346,9 @@ evas_gl_symbols(void *(*GetProcAddress)(const char *name), const char *extsn EIN // .... :( dl_fallback = EINA_TRUE; FINDSYMN(eglsym_eglCreateImageKHR, "eglCreateImageKHR", NULL, secsym_func_void_ptr); - FINDSYMN(eglsym_eglCreateImageKHR, "eglCreateImageOES", NULL, secsym_func_void_ptr); if (eglsym_eglCreateImageKHR) { FINDSYMN(secsym_eglDestroyImage, "eglDestroyImageKHR", NULL, secsym_func_uint); - FINDSYMN(secsym_eglDestroyImage, "eglDestroyImageOES", NULL, secsym_func_uint); } else { --