From: Dave Airlie Date: Sat, 24 Dec 2011 19:30:26 +0000 (+0000) Subject: gallium/u_pack: fix l8/i8 pack color ub X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=157566860dee7ef4560f0f0a0a09f86b5973ed19;p=mesa.git gallium/u_pack: fix l8/i8 pack color ub just noticed this in passing, not sure it actually fixes any issus. Signed-off-by: Dave Airlie Reviewed-by: Brian Paul --- diff --git a/src/gallium/auxiliary/util/u_pack_color.h b/src/gallium/auxiliary/util/u_pack_color.h index 0bbf769a4e2..50ec226d887 100644 --- a/src/gallium/auxiliary/util/u_pack_color.h +++ b/src/gallium/auxiliary/util/u_pack_color.h @@ -122,7 +122,7 @@ util_pack_color_ub(ubyte r, ubyte g, ubyte b, ubyte a, case PIPE_FORMAT_L8_UNORM: case PIPE_FORMAT_I8_UNORM: { - uc->ub = a; + uc->ub = r; } return; case PIPE_FORMAT_R32G32B32A32_FLOAT: