diff options
author | Kenneth Graunke <[email protected]> | 2010-11-17 13:59:17 -0800 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2010-11-17 13:59:17 -0800 |
commit | 9935fe705df44bb633039ca74332cc0c126ccc30 (patch) | |
tree | 84b484f5f7a5fca90c05a84a7b28f4a6be0f64f7 /src/glsl/ir.cpp | |
parent | af1cba2260c3546ba89d47c9612d66f513e69842 (diff) |
glsl: Remove the ir_binop_cross opcode.
Diffstat (limited to 'src/glsl/ir.cpp')
-rw-r--r-- | src/glsl/ir.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/glsl/ir.cpp b/src/glsl/ir.cpp index 4b886018dca..a7ebc0c2b66 100644 --- a/src/glsl/ir.cpp +++ b/src/glsl/ir.cpp @@ -252,7 +252,6 @@ ir_expression::get_num_operands(ir_expression_operation op) 2, /* ir_binop_logic_or */ 2, /* ir_binop_dot */ - 2, /* ir_binop_cross */ 2, /* ir_binop_min */ 2, /* ir_binop_max */ @@ -317,7 +316,6 @@ static const char *const operator_strs[] = { "^^", "||", "dot", - "cross", "min", "max", "pow", |