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:
authorAndre Susano Pinto <andresusanopinto@gmail.com>2008-08-03 19:37:24 +0400
committerAndre Susano Pinto <andresusanopinto@gmail.com>2008-08-03 19:37:24 +0400
commitc2cd6bebe609db6b8079b30ee90b3d9f9abb0e2d (patch)
tree0c7d4af57f1d3a0b705550ab2389ddf5314b79ac /source/blender/blenkernel
parentae5217733d9203e42d5a8cd432edacf5c846ff21 (diff)
added openmp support for bvhtree build (max processes = tree_type)
Diffstat (limited to 'source/blender/blenkernel')
-rw-r--r--source/blender/blenkernel/intern/shrinkwrap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/shrinkwrap.c b/source/blender/blenkernel/intern/shrinkwrap.c
index 53051b3cfd7..481d5f680db 100644
--- a/source/blender/blenkernel/intern/shrinkwrap.c
+++ b/source/blender/blenkernel/intern/shrinkwrap.c
@@ -1024,7 +1024,7 @@ void shrinkwrapModifier_deform(ShrinkwrapModifierData *smd, Object *ob, DerivedM
break;
case MOD_SHRINKWRAP_NORMAL:
- shrinkwrap_calc_normal_projection(&calc);
+ BENCH(shrinkwrap_calc_normal_projection(&calc));
break;
case MOD_SHRINKWRAP_NEAREST_VERTEX: