summaryrefslogtreecommitdiffstats
path: root/src/glsl/opt_function_inlining.cpp
diff options
context:
space:
mode:
authorZoë Blade <zoe@bytenoise.co.uk>2015-04-22 11:33:17 +0100
committerFrancisco Jerez <currojerez@riseup.net>2015-04-27 17:28:29 +0300
commit05e7f7f4388bde882b7ce74124000a4d435affff (patch)
tree9a7c7ea02152900a03fc6662aa60a7b8f79dad06 /src/glsl/opt_function_inlining.cpp
parente17dc004fd96e589e92ee64deeb45339af4bf671 (diff)
downloadexternal_mesa3d-05e7f7f4388bde882b7ce74124000a4d435affff.zip
external_mesa3d-05e7f7f4388bde882b7ce74124000a4d435affff.tar.gz
external_mesa3d-05e7f7f4388bde882b7ce74124000a4d435affff.tar.bz2
Fix a few typos
Reviewed-by: Francisco Jerez <currojerez@riseup.net>
Diffstat (limited to 'src/glsl/opt_function_inlining.cpp')
-rw-r--r--src/glsl/opt_function_inlining.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glsl/opt_function_inlining.cpp b/src/glsl/opt_function_inlining.cpp
index 64b4907..84a9e4f 100644
--- a/src/glsl/opt_function_inlining.cpp
+++ b/src/glsl/opt_function_inlining.cpp
@@ -130,7 +130,7 @@ ir_call::generate_inline(ir_instruction *next_ir)
parameters[i] = sig_param->clone(ctx, ht);
parameters[i]->data.mode = ir_var_auto;
- /* Remove the read-only decoration becuase we're going to write
+ /* Remove the read-only decoration because we're going to write
* directly to this variable. If the cloned variable is left
* read-only and the inlined function is inside a loop, the loop
* analysis code will get confused.