From: Brian Paul Date: Wed, 27 Jul 2011 22:08:58 +0000 (-0600) Subject: svga: fix the test for sRGB texture formats X-Git-Tag: 062012170305~4323 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1a35fde7c8571c999147bdaeed462b294a86923a;p=profile%2Fivi%2Fmesa.git svga: fix the test for sRGB texture formats The pipe_sampler_view::format field should be prefered over the resource/ texture format. The former is used to override the texture format for sRGB decode enable/disable, etc. Also, use new util_format_is_srgb() helper to catch all sRGB formats. This fixes the piglit tex-srgb test for GL_EXT_texture_sRGB_decode. --- diff --git a/src/gallium/drivers/svga/svga_pipe_sampler.c b/src/gallium/drivers/svga/svga_pipe_sampler.c index 446fcc4..dcfeaac 100644 --- a/src/gallium/drivers/svga/svga_pipe_sampler.c +++ b/src/gallium/drivers/svga/svga_pipe_sampler.c @@ -25,6 +25,7 @@ #include "util/u_inlines.h" #include "pipe/p_defines.h" +#include "util/u_format.h" #include "util/u_math.h" #include "util/u_memory.h" #include "tgsi/tgsi_parse.h" @@ -230,7 +231,7 @@ svga_set_fragment_sampler_views(struct pipe_context *pipe, if (!views[i]) continue; - if (views[i]->texture->format == PIPE_FORMAT_B8G8R8A8_SRGB) + if (util_format_is_srgb(views[i]->format)) flag_srgb |= 1 << i; if (views[i]->texture->target == PIPE_TEXTURE_1D)