From 8778bf221e90e9b59caad02ab72a0a0edcfe2451 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Tue, 5 Apr 2011 07:53:05 -0600 Subject: [PATCH] mesa: fix alpha value for texstore_rgbx8888 Silences constant overflow compiler warning. --- src/mesa/main/texstore.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesa/main/texstore.c b/src/mesa/main/texstore.c index eb37490..13fae3b 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; } -- 2.7.4