[Mesa-dev] [PATCH 1/2] glsl: Emit mul instead of dot if only one component left.
Matt Turner
mattst88 at gmail.com
Fri Oct 31 10:35:01 PDT 2014
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=85683
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=85691
---
src/glsl/opt_algebraic.cpp | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/src/glsl/opt_algebraic.cpp b/src/glsl/opt_algebraic.cpp
index c8d1ba1..a2d7e49 100644
--- a/src/glsl/opt_algebraic.cpp
+++ b/src/glsl/opt_algebraic.cpp
@@ -572,9 +572,12 @@ ir_algebraic_visitor::handle_expression(ir_expression *ir)
if (count >= op_const[i]->type->vector_elements)
break;
+ ir_expression_operation op = count == 1 ?
+ ir_binop_mul : ir_binop_dot;
+
/* Swizzle both operands to remove the channels that were zero. */
return new(mem_ctx)
- ir_expression(ir_binop_dot, glsl_type::float_type,
+ ir_expression(op, glsl_type::float_type,
new(mem_ctx) ir_swizzle(ir->operands[0],
components, count),
new(mem_ctx) ir_swizzle(ir->operands[1],
--
2.0.4
More information about the mesa-dev
mailing list