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:
authorBastien Montagne <montagne29@wanadoo.fr>2017-11-21 19:52:25 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2017-11-22 00:25:22 +0300
commit7770c2ef8712ce0f3761fef305978c3275384834 (patch)
tree6d85bd76674de7a478e8186ae83641e09d2e4180 /source/blender/editors/mesh/editmesh_utils.c
parent6c372530b43931d1159e5ae82beaf36859ce08ca (diff)
Removing OMP: get rid of last bit in /editors/ area.
Just removing it, such cases are not bottlenecks and not worth the complication of doing real threading with own BLI_task.
Diffstat (limited to 'source/blender/editors/mesh/editmesh_utils.c')
-rw-r--r--source/blender/editors/mesh/editmesh_utils.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/source/blender/editors/mesh/editmesh_utils.c b/source/blender/editors/mesh/editmesh_utils.c
index fc568a8b8ee..8baf5d05fe9 100644
--- a/source/blender/editors/mesh/editmesh_utils.c
+++ b/source/blender/editors/mesh/editmesh_utils.c
@@ -1240,7 +1240,6 @@ void EDBM_mesh_reveal(BMEditMesh *em, bool select)
/* Use tag flag to remember what was hidden before all is revealed.
* BM_ELEM_HIDDEN --> BM_ELEM_TAG */
-#pragma omp parallel for schedule(static) if (em->bm->totvert + em->bm->totedge + em->bm->totface >= BM_OMP_LIMIT)
for (i = 0; i < 3; i++) {
BMIter iter;
BMElem *ele;