[Mesa-dev] [PATCH] mesa-demos: fix opengles1/texture_from_pixmap test

Chia-I Wu olv at lunarg.com
Mon Mar 10 09:05:21 PDT 2014


On Fri, Mar 7, 2014 at 6:56 PM, Tapani Pälli <tapani.palli at intel.com> wrote:
> 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.
Can we make the use of GL_OES_EGL_image_external optional, with a
command line option or etc?  Though I don't have a strong opinion.

>
> Signed-off-by: Tapani Pälli <tapani.palli at 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
>



-- 
olv at LunarG.com


More information about the mesa-dev mailing list