Remove GL_OES_EGL_image_external usage, this would work with current
Mesa only if image was created with EGL_EXT_image_dma_buf_import, this
makes test work again also if GL_OES_EGL_image_external is present.

Signed-off-by: Tapani Pälli <tapani.pa...@intel.com>
---
 src/egl/opengles1/texture_from_pixmap.c | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/src/egl/opengles1/texture_from_pixmap.c 
b/src/egl/opengles1/texture_from_pixmap.c
index eeb6ee7..436e575 100644
--- a/src/egl/opengles1/texture_from_pixmap.c
+++ b/src/egl/opengles1/texture_from_pixmap.c
@@ -351,11 +351,6 @@ app_init_exts(struct app_data *data)
    if (exts && data->glEGLImageTargetTexture2DOES) {
       if (strstr(exts, "GL_OES_EGL_image"))
          data->target = GL_TEXTURE_2D;
-#ifdef GL_OES_EGL_image_external
-      /* prefer external texture */
-      if (strstr(exts, "GL_OES_EGL_image_external"))
-         data->target = GL_TEXTURE_EXTERNAL_OES;
-#endif
    }
 
    if (!data->target) {
-- 
1.8.3.1

_______________________________________________
mesa-dev mailing list
mesa-dev@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/mesa-dev

Reply via email to