diff options
author | Timothy Arceri <[email protected]> | 2017-06-21 20:12:11 +1000 |
---|---|---|
committer | Timothy Arceri <[email protected]> | 2017-06-22 20:06:32 +1000 |
commit | 95927bb27fa0cd039e545796a76e113cf45cefb5 (patch) | |
tree | f8af5c63cebed41193bdde664c7706d005204b11 | |
parent | a285caaf25e5d69bebd484fdf8019afe116cedde (diff) |
glsl: fix typo in comment
Reviewed-by: Lionel Landwerlin <[email protected]>
Reviewed-by: Nicolai Hähnle <[email protected]>
Reviewed-by: Samuel Pitoiset <[email protected]>
-rw-r--r-- | src/compiler/glsl/opt_algebraic.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/glsl/opt_algebraic.cpp b/src/compiler/glsl/opt_algebraic.cpp index a5ba843fd15..a5a10293e8a 100644 --- a/src/compiler/glsl/opt_algebraic.cpp +++ b/src/compiler/glsl/opt_algebraic.cpp @@ -246,7 +246,7 @@ ir_algebraic_visitor::reassociate_operands(ir_expression *ir1, /** * Reassociates a constant down a tree of adds or multiplies. * - * Consider (2 * (a * (b * 0.5))). We want to send up with a * b. + * Consider (2 * (a * (b * 0.5))). We want to end up with a * b. */ bool ir_algebraic_visitor::reassociate_constant(ir_expression *ir1, int const_index, |