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:
authorTon Roosendaal <ton@blender.org>2006-02-14 20:32:49 +0300
committerTon Roosendaal <ton@blender.org>2006-02-14 20:32:49 +0300
commit3cf0bbfa1787e314d27e05e1872e9caa5c3d6888 (patch)
treec110f6fc95ace447e58cafe248d1858d6d6626de /source/blender/makesdna/DNA_color_types.h
parentb9bd02e5905b05deb43af0a9db6dbfda9ec43f17 (diff)
Nasty memory conflict in Compositor... when:
- a Group has Curve node inside - this Group was re-used more times - with threaded render activated - and both groups executed on same time Then the premultipy optimize table was created twice... causing memory to confuse.
Diffstat (limited to 'source/blender/makesdna/DNA_color_types.h')
-rw-r--r--source/blender/makesdna/DNA_color_types.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_color_types.h b/source/blender/makesdna/DNA_color_types.h
index b969d11d7ce..9aae71b9cc9 100644
--- a/source/blender/makesdna/DNA_color_types.h
+++ b/source/blender/makesdna/DNA_color_types.h
@@ -70,6 +70,7 @@ typedef struct CurveMapping {
/* cumap->flag */
#define CUMA_DO_CLIP 1
+#define CUMA_PREMULLED 2
#endif