summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2010-05-07 12:14:41 -0700
committerEric Anholt <eric@anholt.net>2010-06-24 15:05:20 -0700
commit763cd75863ed9a16912e585887580c44d1e8109f (patch)
treec22feb8f98a3ccc2a46c54cb063bb83038280ae6
parent1d20862c8a0e100e43458f01217c047c76da05f3 (diff)
ir_to_mesa: add logic_xor to get CorrectParse2.vert working.
-rw-r--r--ir_to_mesa.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/ir_to_mesa.cpp b/ir_to_mesa.cpp
index 8858d4be68..3ae848a21b 100644
--- a/ir_to_mesa.cpp
+++ b/ir_to_mesa.cpp
@@ -410,6 +410,7 @@ ir_to_mesa_visitor::visit(ir_expression *ir)
case ir_binop_equal:
this->result = this->create_tree(MB_TERM_seq_vec4_vec4, ir, op[0], op[1]);
break;
+ case ir_binop_logic_xor:
case ir_binop_nequal:
this->result = this->create_tree(MB_TERM_sne_vec4_vec4, ir, op[0], op[1]);
break;