[Bf-blender-cvs] [92fbcbb4bf] master: Cycles: Cleanup, spelling

Sergey Sharybin noreply at git.blender.org
Mon Jan 16 17:56:10 CET 2017


Commit: 92fbcbb4bf0ec613907ebf20c3874ce684243e86
Author: Sergey Sharybin
Date:   Mon Jan 16 17:55:41 2017 +0100
Branches: master
https://developer.blender.org/rB92fbcbb4bf0ec613907ebf20c3874ce684243e86

Cycles: Cleanup, spelling

===================================================================

M	intern/cycles/bvh/bvh_build.cpp

===================================================================

diff --git a/intern/cycles/bvh/bvh_build.cpp b/intern/cycles/bvh/bvh_build.cpp
index 038070cba4..8cf1495b33 100644
--- a/intern/cycles/bvh/bvh_build.cpp
+++ b/intern/cycles/bvh/bvh_build.cpp
@@ -925,7 +925,7 @@ BVHNode* BVHBuild::create_leaf_node(const BVHRange& range,
 		BVHNode *inner = new InnerNode(inner_bounds, leaves[1], leaves[2]);
 		return new InnerNode(range.bounds(), leaves[0], inner);
 	} else {
-		/* Shpuld be doing more branches if more primitive types added. */
+		/* Should be doing more branches if more primitive types added. */
 		assert(num_leaves <= 5);
 		BoundBox inner_bounds_a = merge(leaves[0]->m_bounds, leaves[1]->m_bounds);
 		BoundBox inner_bounds_b = merge(leaves[2]->m_bounds, leaves[3]->m_bounds);




More information about the Bf-blender-cvs mailing list