From: Brian Paul Date: Sun, 16 Jan 2011 03:37:57 +0000 (-0700) Subject: mesa: move declarations before code X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=bfad484505e5e313895ae797fe7c24cca97331b3;p=mesa.git mesa: move declarations before code --- diff --git a/src/mesa/main/texfetch.c b/src/mesa/main/texfetch.c index bbb0f8e8d27..b73cedf4794 100644 --- a/src/mesa/main/texfetch.c +++ b/src/mesa/main/texfetch.c @@ -858,9 +858,10 @@ fetch_texel_chan_to_float(const struct gl_texture_image *texImage, void _mesa_set_fetch_functions(struct gl_texture_image *texImage, GLuint dims) { - ASSERT(dims == 1 || dims == 2 || dims == 3); GLuint format = texImage->TexFormat; + ASSERT(dims == 1 || dims == 2 || dims == 3); + if (texImage->TexObject->sRGBDecode == GL_SKIP_DECODE_EXT && _mesa_get_format_color_encoding(format) == GL_SRGB) { format = _mesa_get_srgb_format_linear(format);