mesa: s/short/ushort/ in unpack_SIGNED_RGBA_16()
authorBrian Paul <brianp@vmware.com>
Sat, 17 Sep 2011 16:50:07 +0000 (10:50 -0600)
committerBrian Paul <brianp@vmware.com>
Sat, 17 Sep 2011 16:50:42 +0000 (10:50 -0600)
src/mesa/main/format_unpack.c

index c5146f72da04566778e4a4e3da381402d9004691..02b57205ed52f67612270a79b24f394cd2b25a2a 100644 (file)
@@ -947,7 +947,7 @@ unpack_SIGNED_RGBA_16(const void *src, GLfloat dst[4])
 static void
 unpack_RGBA_16(const void *src, GLfloat dst[4])
 {
-   const GLshort *s = (const GLshort *) src;
+   const GLushort *s = (const GLushort *) src;
    dst[RCOMP] = USHORT_TO_FLOAT( s[0] );
    dst[GCOMP] = USHORT_TO_FLOAT( s[1] );
    dst[BCOMP] = USHORT_TO_FLOAT( s[2] );