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:
authorCampbell Barton <ideasman42@gmail.com>2013-09-09 09:42:26 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-09-09 09:42:26 +0400
commit00bd7da6745d8f8aa9ec7327f38ed6ac253beba7 (patch)
tree98a1e4ce39676173660a882ecbe591278e646a2b /source/blender/bmesh/bmesh_class.h
parent66efedd09659d94a11c995d2fda16a9c13dc65a8 (diff)
correct error in recent changes for building with openmp.
rename DM_OMP_LIMIT to BKE_MESH_OMP_LIMIT and set to 0 when in debug mode, same for BM_OMP_LIMIT.
Diffstat (limited to 'source/blender/bmesh/bmesh_class.h')
-rw-r--r--source/blender/bmesh/bmesh_class.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/source/blender/bmesh/bmesh_class.h b/source/blender/bmesh/bmesh_class.h
index 5b79bd78061..90105b0dd81 100644
--- a/source/blender/bmesh/bmesh_class.h
+++ b/source/blender/bmesh/bmesh_class.h
@@ -292,6 +292,12 @@ typedef bool (*BMElemFilterFunc)(BMElem *, void *user_data);
* but should not error on valid cases */
#define BM_LOOP_RADIAL_MAX 10000
#define BM_NGON_MAX 100000
-#define BM_OMP_LIMIT 10000 /* 10000 */ /* setting zero so we can catch bugs in OpenMP/BMesh */
+
+/* setting zero so we can catch bugs in OpenMP/BMesh */
+#ifdef DEBUG
+# define BM_OMP_LIMIT 0
+#else
+# define BM_OMP_LIMIT 10000
+#endif
#endif /* __BMESH_CLASS_H__ */