OSDN Git Service

Populate arb_fp_instruction negate field correctly.
authorKeith Whitwell <keith@tungstengraphics.com>
Fri, 7 Oct 2005 09:55:26 +0000 (09:55 +0000)
committerKeith Whitwell <keith@tungstengraphics.com>
Fri, 7 Oct 2005 09:55:26 +0000 (09:55 +0000)
src/mesa/main/texenvprogram.c

index 6f9fe2d..7b74e3a 100644 (file)
@@ -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;
 }