From d136d1d2e1174d2420ce5e32507904243ab240cd Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Sat, 15 Jan 2011 20:41:26 -0700 Subject: mesa: minor tweaks in _mesa_set_fetch_functions() --- src/mesa/main/texfetch.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/mesa/main') diff --git a/src/mesa/main/texfetch.c b/src/mesa/main/texfetch.c index b73cedf479..8aa1e4970d 100644 --- a/src/mesa/main/texfetch.c +++ b/src/mesa/main/texfetch.c @@ -858,7 +858,7 @@ fetch_texel_chan_to_float(const struct gl_texture_image *texImage, void _mesa_set_fetch_functions(struct gl_texture_image *texImage, GLuint dims) { - GLuint format = texImage->TexFormat; + gl_format format = texImage->TexFormat; ASSERT(dims == 1 || dims == 2 || dims == 3); @@ -866,8 +866,8 @@ _mesa_set_fetch_functions(struct gl_texture_image *texImage, GLuint dims) _mesa_get_format_color_encoding(format) == GL_SRGB) { format = _mesa_get_srgb_format_linear(format); } - texImage->FetchTexelf = - _mesa_get_texel_fetch_func(format, dims); + + texImage->FetchTexelf = _mesa_get_texel_fetch_func(format, dims); texImage->FetchTexelc = fetch_texel_float_to_chan; -- cgit v1.2.3