From: Keith Whitwell Date: Fri, 7 Oct 2005 09:55:26 +0000 (+0000) Subject: Populate arb_fp_instruction negate field correctly. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f2802c40fff686301a7ff99f0a0b1c57d5cf5625;p=mesa.git Populate arb_fp_instruction negate field correctly. --- diff --git a/src/mesa/main/texenvprogram.c b/src/mesa/main/texenvprogram.c index 6f9fe2dc454..7b74e3ad1b4 100644 --- a/src/mesa/main/texenvprogram.c +++ b/src/mesa/main/texenvprogram.c @@ -452,7 +452,7 @@ static void emit_arg( struct fp_src_register *reg, reg->File = ureg.file; reg->Index = ureg.idx; reg->Swizzle = ureg.swz; - reg->NegateBase = ureg.negatebase; + reg->NegateBase = ureg.negatebase ? 0xf : 0x0; reg->Abs = ureg.abs; reg->NegateAbs = ureg.negateabs; }