mesa: fix copy & paste bugs in pack_ubyte_SARGB8()
authorBrian Paul <brianp@vmware.com>
Thu, 6 Mar 2014 17:58:30 +0000 (10:58 -0700)
committerBrian Paul <brianp@vmware.com>
Thu, 6 Mar 2014 18:16:15 +0000 (11:16 -0700)
Cc: "10.0" "10.1" <mesa-stable@lists.freedesktop.org>
Reviewed-by: Jose Fonseca <jfonseca@vmware.com>
src/mesa/main/format_pack.c

index b870001d909bec2b600d43b0cc64d0a6707e6162..e0d2a185eb05259a7a8ea674a0a8bc231df3ecc2 100644 (file)
@@ -1090,8 +1090,8 @@ pack_ubyte_SARGB8(const GLubyte src[4], void *dst)
 {
    GLuint *d = ((GLuint *) dst);
    GLubyte r = linear_ubyte_to_srgb_ubyte(src[RCOMP]);
-   GLubyte g = linear_ubyte_to_srgb_ubyte(src[RCOMP]);
-   GLubyte b = linear_ubyte_to_srgb_ubyte(src[RCOMP]);
+   GLubyte g = linear_ubyte_to_srgb_ubyte(src[GCOMP]);
+   GLubyte b = linear_ubyte_to_srgb_ubyte(src[BCOMP]);
    *d = PACK_COLOR_8888(src[ACOMP], r, g, b);
 }