[Mesa-dev] [PATCH] mesa: Allow ETC2/EAC formats with ARB_ES3_compatibility.
Anuj Phogat
anuj.phogat at gmail.com
Mon Mar 4 14:01:25 PST 2013
On Mon, Mar 4, 2013 at 11:38 AM, Matt Turner <mattst88 at gmail.com> wrote:
> Reported-by: Marek Olšák <maraeo at gmail.com>
> ---
> src/mesa/main/teximage.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/src/mesa/main/teximage.c b/src/mesa/main/teximage.c
> index 0dcf88a..e5260d1 100644
> --- a/src/mesa/main/teximage.c
> +++ b/src/mesa/main/teximage.c
> @@ -520,7 +520,7 @@ _mesa_base_tex_format( struct gl_context *ctx, GLint internalFormat )
> }
> }
>
> - if (_mesa_is_gles3(ctx)) {
> + if (_mesa_is_gles3(ctx) || ctx->Extensions.ARB_ES3_compatibility) {
Similar change is required in compressed_texture_error_check() as well.
> switch (internalFormat) {
> case GL_COMPRESSED_RGB8_ETC2:
> case GL_COMPRESSED_SRGB8_ETC2:
> --
> 1.7.8.6
>
> _______________________________________________
> mesa-dev mailing list
> mesa-dev at lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/mesa-dev
More information about the mesa-dev
mailing list