Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Dinges <blender@dingto.org>2013-08-13 12:43:31 +0400
committerThomas Dinges <blender@dingto.org>2013-08-13 12:43:31 +0400
commit8cda3264bd071521d1dadcfe640474100f227ed3 (patch)
tree858bfcaab067c0a88c9cbc9b0e95c03b2cf68c79 /intern/cycles/render/graph.cpp
parent851627f6e0dff6aaecc975556e6d0f5401925b32 (diff)
Code cleanup:
* Some typo fixes.
Diffstat (limited to 'intern/cycles/render/graph.cpp')
-rw-r--r--intern/cycles/render/graph.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/cycles/render/graph.cpp b/intern/cycles/render/graph.cpp
index 2e8bc77b9c9..4c6e64a1fb5 100644
--- a/intern/cycles/render/graph.cpp
+++ b/intern/cycles/render/graph.cpp
@@ -255,7 +255,7 @@ void ShaderGraph::finalize(bool do_bump, bool do_osl, bool do_multi_transform)
void ShaderGraph::find_dependencies(set<ShaderNode*>& dependencies, ShaderInput *input)
{
- /* find all nodes that this input dependes on directly and indirectly */
+ /* find all nodes that this input depends on directly and indirectly */
ShaderNode *node = (input->link)? input->link->parent: NULL;
if(node) {