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>2016-04-05 02:20:18 +0300
committerThomas Dinges <blender@dingto.org>2016-04-05 02:20:45 +0300
commit9c952bbe854d91034bed3c4e154e6e25ae56ef7d (patch)
treead9f3bd62c2685cbc5c3a0fc6c9c8075a34a2857 /intern/cycles/bvh/bvh_build.cpp
parent82b0a9e36900c8aeb374078bd4cb3a7d7f8295e6 (diff)
Cleanup: Typo fixes after BVH commits.
Diffstat (limited to 'intern/cycles/bvh/bvh_build.cpp')
-rw-r--r--intern/cycles/bvh/bvh_build.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/intern/cycles/bvh/bvh_build.cpp b/intern/cycles/bvh/bvh_build.cpp
index b77696385a8..255051c92dc 100644
--- a/intern/cycles/bvh/bvh_build.cpp
+++ b/intern/cycles/bvh/bvh_build.cpp
@@ -305,7 +305,7 @@ BVHNode* BVHBuild::run()
task_pool.wait_work();
}
else {
- /* Perrform multithreaded binning build. */
+ /* Perform multithreaded binning build. */
BVHObjectBinning rootbin(root, (references.size())? &references[0]: NULL);
rootnode = build_node(rootbin, 0);
task_pool.wait_work();
@@ -638,7 +638,7 @@ BVHNode* BVHBuild::create_leaf_node(const BVHRange& range,
/* Create leaf nodes for every existing primitive.
*
- * Here we write otimitive types, indices and objects a to temporary array.
+ * Here we write primitive types, indices and objects to a temporary array.
* This way we keep all the heavy memory allocation code outside of the
* thread lock in the case of spatial split building.
*