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/blenkernel/BKE_colortools.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/blenkernel/BKE_colortools.h')
-rw-r--r--source/blender/blenkernel/BKE_colortools.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/blenkernel/BKE_colortools.h b/source/blender/blenkernel/BKE_colortools.h
index a9d38162824..53097b915f0 100644
--- a/source/blender/blenkernel/BKE_colortools.h
+++ b/source/blender/blenkernel/BKE_colortools.h
@@ -56,5 +56,7 @@ void curvemapping_evaluate_premulRGBF(struct CurveMapping *cumap, float *veco
void curvemapping_do_image(struct CurveMapping *cumap, struct Image *ima);
void curvemapping_premultiply(struct CurveMapping *cumap, int restore);
int curvemapping_RGBA_does_something(struct CurveMapping *cumap);
+void curvemapping_initialize(struct CurveMapping *cumap);
+
#endif