From: Eric Anholt Date: Tue, 28 Sep 2010 04:15:28 +0000 (-0700) Subject: i965: Fix negation in the new FS backend. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=fceb78e3cc67d035a69613826f46a18e62235f5c;p=mesa.git i965: Fix negation in the new FS backend. Fixes: glsl1-Negation glsl1-Negation2 --- diff --git a/src/mesa/drivers/dri/i965/brw_fs.cpp b/src/mesa/drivers/dri/i965/brw_fs.cpp index 7f2bf84a140..d05aa29014f 100644 --- a/src/mesa/drivers/dri/i965/brw_fs.cpp +++ b/src/mesa/drivers/dri/i965/brw_fs.cpp @@ -638,7 +638,7 @@ fs_visitor::visit(ir_expression *ir) emit(fs_inst(BRW_OPCODE_ADD, this->result, op[0], fs_reg(-1))); break; case ir_unop_neg: - op[0].negate = ~op[0].negate; + op[0].negate = !op[0].negate; this->result = op[0]; break; case ir_unop_abs: