mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-21 20:10:14 +01:00
glsl: Optimize lrp(x, 0, a) into x - (x * a).
Helps one program in shader-db: instructions in affected programs: 96 -> 92 (-4.17%) Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
This commit is contained in:
parent
ecc6c3d4ab
commit
d5fa8a9562
1 changed files with 2 additions and 0 deletions
|
|
@ -570,6 +570,8 @@ ir_algebraic_visitor::handle_expression(ir_expression *ir)
|
|||
return ir->operands[0];
|
||||
} else if (is_vec_zero(op_const[0])) {
|
||||
return mul(ir->operands[1], ir->operands[2]);
|
||||
} else if (is_vec_zero(op_const[1])) {
|
||||
return add(ir->operands[0], neg(mul(ir->operands[0], ir->operands[2])));
|
||||
}
|
||||
break;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue