From: Timothy Arceri Date: Wed, 21 Jun 2017 10:12:11 +0000 (+1000) Subject: glsl: fix typo in comment X-Git-Tag: upstream/18.1.0~8485 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=95927bb27fa0cd039e545796a76e113cf45cefb5;p=platform%2Fupstream%2Fmesa.git glsl: fix typo in comment Reviewed-by: Lionel Landwerlin Reviewed-by: Nicolai Hähnle Reviewed-by: Samuel Pitoiset --- diff --git a/src/compiler/glsl/opt_algebraic.cpp b/src/compiler/glsl/opt_algebraic.cpp index a5ba843..a5a1029 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,