From: Brian Paul Date: Tue, 5 Apr 2011 13:53:05 +0000 (-0600) Subject: mesa: fix alpha value for texstore_rgbx8888 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8778bf221e90e9b59caad02ab72a0a0edcfe2451;p=mesa.git mesa: fix alpha value for texstore_rgbx8888 Silences constant overflow compiler warning. --- diff --git a/src/mesa/main/texstore.c b/src/mesa/main/texstore.c index eb37490e1f6..13fae3bf98c 100644 --- a/src/mesa/main/texstore.c +++ b/src/mesa/main/texstore.c @@ -3182,7 +3182,7 @@ _mesa_texstore_signed_rgbx8888(TEXSTORE_PARAMS) dst[3] = FLOAT_TO_BYTE_TEX(srcRow[RCOMP]); dst[2] = FLOAT_TO_BYTE_TEX(srcRow[GCOMP]); dst[1] = FLOAT_TO_BYTE_TEX(srcRow[BCOMP]); - dst[0] = 0xff; + dst[0] = 127; srcRow += 3; dst += 4; }