From f1e605f1ada79bb4d57187274096d44e270615a6 Mon Sep 17 00:00:00 2001 From: Matt Turner Date: Wed, 16 Oct 2013 16:56:45 -0700 Subject: [PATCH] glsl: Optimize -(-expr) into expr. Reviewed-by: Paul Berry Reviewed-by: Eric Anholt --- src/glsl/opt_algebraic.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/glsl/opt_algebraic.cpp b/src/glsl/opt_algebraic.cpp index 9b0596cd71a..37b2f02c6e4 100644 --- a/src/glsl/opt_algebraic.cpp +++ b/src/glsl/opt_algebraic.cpp @@ -228,6 +228,16 @@ ir_algebraic_visitor::handle_expression(ir_expression *ir) } break; + case ir_unop_neg: + if (op_expr[0] == NULL) + break; + + if (op_expr[0]->operation == ir_unop_neg) { + this->progress = true; + return swizzle_if_required(ir, op_expr[0]->operands[0]); + } + break; + case ir_unop_logic_not: { enum ir_expression_operation new_op = ir_unop_logic_not; -- 2.30.2