gl_drm: Check for the correct dma_buf extension

We're importing, not exporting
This commit is contained in:
Derek Foreman 2016-12-08 07:35:10 -06:00
parent 52d4313bb6
commit add19c8a77
1 changed files with 1 additions and 1 deletions

View File

@ -270,7 +270,7 @@ gl_extn_veto(Render_Engine *re)
if (!strstr(str, "EGL_EXT_swap_buffers_with_damage")) if (!strstr(str, "EGL_EXT_swap_buffers_with_damage"))
glsym_eglSwapBuffersWithDamage = NULL; glsym_eglSwapBuffersWithDamage = NULL;
if (strstr(str, "EGL_MESA_image_dma_buf_export")) if (strstr(str, "EGL_EXT_image_dma_buf_import"))
dmabuf_present = EINA_TRUE; dmabuf_present = EINA_TRUE;
} }
else else