[Bf-blender-cvs] [61045965877] master: Cleanup commented out OMP command.

Bastien Montagne noreply at git.blender.org
Thu Jan 11 20:17:51 CET 2018


Commit: 610459658777e73e50671ddbcebd70294a6ad76e
Author: Bastien Montagne
Date:   Thu Jan 11 20:17:29 2018 +0100
Branches: master
https://developer.blender.org/rB610459658777e73e50671ddbcebd70294a6ad76e

Cleanup commented out OMP command.

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

M	source/blender/blenkernel/intern/multires.c

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

diff --git a/source/blender/blenkernel/intern/multires.c b/source/blender/blenkernel/intern/multires.c
index 73270704393..3fc052414eb 100644
--- a/source/blender/blenkernel/intern/multires.c
+++ b/source/blender/blenkernel/intern/multires.c
@@ -1380,8 +1380,7 @@ void multires_set_space(DerivedMesh *dm, Object *ob, int from, int to)
 
 	k = 0; /*current loop/mdisp index within the mloop array*/
 
-	//#pragma omp parallel for private(i) if (dm->numLoopData * gridSize * gridSize >= CCG_OMP_LIMIT)
-
+	/* TODO: Use BLI_task parallel range for that one too? */
 	for (i = 0; i < dm->numPolyData; ++i) {
 		const int numVerts = mpoly[i].totloop;
 		int S, x, y, gIndex = gridOffset[i];



More information about the Bf-blender-cvs mailing list