diff options
Diffstat (limited to 'src/compiler/glsl/ir_expression_operation.py')
-rw-r--r-- | src/compiler/glsl/ir_expression_operation.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/glsl/ir_expression_operation.py b/src/compiler/glsl/ir_expression_operation.py index c718faa9d87..8dfcf2c0397 100644 --- a/src/compiler/glsl/ir_expression_operation.py +++ b/src/compiler/glsl/ir_expression_operation.py @@ -369,7 +369,7 @@ class operation(object): if horizontal_operation in self.flags and non_assign_operation in self.flags: return constant_template_horizontal_nonassignment.render(op=self) elif horizontal_operation in self.flags: - return constant_template_horizontal_single_implementation.render(op=self) + return constant_template_horizontal.render(op=self) elif self.num_operands == 2: if self.name == "mul": return constant_template_mul.render(op=self) |