<p dir="ltr"><br>
On Jan 8, 2016 7:00 PM, "Ian Romanick" <<a href="mailto:idr@freedesktop.org">idr@freedesktop.org</a>> wrote:<br>
><br>
> From: Ian Romanick <<a href="mailto:ian.d.romanick@intel.com">ian.d.romanick@intel.com</a>><br>
><br>
> The path that depends on this will be avoided (by fallback_required) if<br>
> the extension is not supported.  _mesa_set_sampler_srgb_decode does not<br>
> generate GL errors (by design), so there are no problems there.</p>
<p dir="ltr">Yes, drivers that don't support the extension will probably never check the flag so it shouldn't mess anything up to just always set it.</p>
<p dir="ltr">> I kept this change separate and last because it is one of the few in the<br>
> series that is not a candidate for the stable branch.<br>
><br>
> Signed-off-by: Ian Romanick <<a href="mailto:ian.d.romanick@intel.com">ian.d.romanick@intel.com</a>><br>
> ---<br>
>  src/mesa/drivers/common/meta.c                 | 6 ++----<br>
>  src/mesa/drivers/common/meta_generate_mipmap.c | 9 ++-------<br>
>  2 files changed, 4 insertions(+), 11 deletions(-)<br>
><br>
> diff --git a/src/mesa/drivers/common/meta.c b/src/mesa/drivers/common/meta.c<br>
> index b026e47..1ed0e4d 100644<br>
> --- a/src/mesa/drivers/common/meta.c<br>
> +++ b/src/mesa/drivers/common/meta.c<br>
> @@ -3132,10 +3132,8 @@ decompress_texture_image(struct gl_context *ctx,<br>
>        /* nearest filtering */<br>
>        _mesa_set_sampler_filters(ctx, decompress->samp_obj, GL_NEAREST, GL_NEAREST);<br>
><br>
> -      /* No sRGB decode or encode.*/<br>
> -      if (ctx->Extensions.EXT_texture_sRGB_decode) {<br>
> -         _mesa_set_sampler_srgb_decode(ctx, decompress->samp_obj, GL_SKIP_DECODE_EXT);<br>
> -      }<br>
> +      /* We don't want to encode or decode sRGB values; treat them as linear. */<br>
> +      _mesa_set_sampler_srgb_decode(ctx, decompress->samp_obj, GL_SKIP_DECODE_EXT);<br>
>     }<br>
><br>
>     _mesa_bind_sampler(ctx, ctx->Texture.CurrentUnit, decompress->samp_obj);<br>
> diff --git a/src/mesa/drivers/common/meta_generate_mipmap.c b/src/mesa/drivers/common/meta_generate_mipmap.c<br>
> index 7beae5f..f20fcac 100644<br>
> --- a/src/mesa/drivers/common/meta_generate_mipmap.c<br>
> +++ b/src/mesa/drivers/common/meta_generate_mipmap.c<br>
> @@ -239,13 +239,8 @@ _mesa_meta_GenerateMipmap(struct gl_context *ctx, GLenum target,<br>
>        _mesa_set_sampler_wrap(ctx, mipmap->samp_obj, GL_CLAMP_TO_EDGE,<br>
>                               GL_CLAMP_TO_EDGE, GL_CLAMP_TO_EDGE);<br>
><br>
> -      /* We don't want to encode or decode sRGB values; treat them as linear.<br>
> -       * This is not technically correct for GLES3 but we don't get any API<br>
> -       * error at the moment.<br>
> -       */<br>
> -      if (ctx->Extensions.EXT_texture_sRGB_decode) {<br>
> -         _mesa_set_sampler_srgb_decode(ctx, mipmap->samp_obj, GL_SKIP_DECODE_EXT);<br>
> -      }<br>
> +      /* We don't want to encode or decode sRGB values; treat them as linear. */<br>
> +      _mesa_set_sampler_srgb_decode(ctx, mipmap->samp_obj, GL_SKIP_DECODE_EXT);<br>
>     }<br>
><br>
>     _mesa_bind_sampler(ctx, ctx->Texture.CurrentUnit, mipmap->samp_obj);<br>
> --<br>
> 2.5.0<br>
><br>
> _______________________________________________<br>
> mesa-dev mailing list<br>
> <a href="mailto:mesa-dev@lists.freedesktop.org">mesa-dev@lists.freedesktop.org</a><br>
> <a href="http://lists.freedesktop.org/mailman/listinfo/mesa-dev">http://lists.freedesktop.org/mailman/listinfo/mesa-dev</a><br>
</p>