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:
authorNicholas Bishop <nicholasbishop@gmail.com>2010-07-28 04:34:04 +0400
committerNicholas Bishop <nicholasbishop@gmail.com>2010-07-28 04:34:04 +0400
commit430ae43ccfa0edd44bff2feb72269bf6e52f87e0 (patch)
tree94a55ea228c048c99ec93ff7a776c924fc4b24a5 /source/blender/editors/sculpt_paint/paint_stroke.c
parentc352b580ac7801df130eba0afa663cd3109de7dc (diff)
== Paint ==
* Changed SCULPT_USE_OPENMP to PAINT_USE_OPENMP
Diffstat (limited to 'source/blender/editors/sculpt_paint/paint_stroke.c')
-rw-r--r--source/blender/editors/sculpt_paint/paint_stroke.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/sculpt_paint/paint_stroke.c b/source/blender/editors/sculpt_paint/paint_stroke.c
index 42bbe9bebff..73c35b83d3c 100644
--- a/source/blender/editors/sculpt_paint/paint_stroke.c
+++ b/source/blender/editors/sculpt_paint/paint_stroke.c
@@ -335,7 +335,7 @@ int load_tex(Sculpt *sd, Brush* br, ViewContext* vc)
buffer = MEM_mallocN(sizeof(GLubyte)*size*size, "load_tex");
- #pragma omp parallel for schedule(static) if (sd->flags & SCULPT_USE_OPENMP)
+ #pragma omp parallel for schedule(static) if (sd->flags & PAINT_USE_OPENMP)
for (j= 0; j < size; j++) {
int i;
float y;