diff options
author | Eric Anholt <[email protected]> | 2010-05-07 12:14:41 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2010-06-24 15:05:20 -0700 |
commit | 763cd75863ed9a16912e585887580c44d1e8109f (patch) | |
tree | c22feb8f98a3ccc2a46c54cb063bb83038280ae6 | |
parent | 1d20862c8a0e100e43458f01217c047c76da05f3 (diff) |
ir_to_mesa: add logic_xor to get CorrectParse2.vert working.
-rw-r--r-- | ir_to_mesa.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ir_to_mesa.cpp b/ir_to_mesa.cpp index 8858d4be68e..3ae848a21bc 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; |