gl_drm: use dlsym looked up symbol for extension check

We looked this up with dlsym, so I guess we should use that even though
the direct call seems to work just fine most of the time.

Signed-off-by: Derek Foreman <derek.foreman.samsung@gmail.com>
Reviewed-by: Chris Michael <cp.michael@samsung.com>
Differential Revision: https://phab.enlightenment.org/D7433
This commit is contained in:
Derek Foreman 2018-12-03 13:25:30 -06:00
parent 56f7097e17
commit 70b16099a9
1 changed files with 1 additions and 1 deletions

View File

@ -237,7 +237,7 @@ eng_egl_symbols(EGLDisplay edsp)
FINDSYM(glsym_eglQueryWaylandBufferWL, "eglQueryWaylandBufferWL",
glsym_func_uint);
if (evas_gl_extension_string_check(exts, "EGL_IMG_context_priority"))
if (_ckext(exts, "EGL_IMG_context_priority"))
_extn_have_context_priority = 1;
done = EINA_TRUE;