From: Brian Paul Date: Wed, 21 Sep 2011 03:06:19 +0000 (-0600) Subject: swrast: s/GLubyte/GLchan/ in a cast X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=bdddf1cc26541d730bac309bd63dfdcaf4aea513;p=mesa.git swrast: s/GLubyte/GLchan/ in a cast --- diff --git a/src/mesa/swrast/s_texfetch_tmp.h b/src/mesa/swrast/s_texfetch_tmp.h index 3eebd13d7df..c63b2043c74 100644 --- a/src/mesa/swrast/s_texfetch_tmp.h +++ b/src/mesa/swrast/s_texfetch_tmp.h @@ -976,7 +976,7 @@ static void FETCH(f_rg88)( const struct swrast_texture_image *texImage, static void store_texel_rg88(struct swrast_texture_image *texImage, GLint i, GLint j, GLint k, const void *texel) { - const GLchan *rgba = (const GLubyte *) texel; + const GLchan *rgba = (const GLchan *) texel; GLushort *dst = TEXEL_ADDR(GLushort, texImage, i, j, k, 1); GLubyte r = CHAN_TO_UBYTE(rgba[RCOMP]); GLubyte g = CHAN_TO_UBYTE(rgba[GCOMP]);