From 3cf0bbfa1787e314d27e05e1872e9caa5c3d6888 Mon Sep 17 00:00:00 2001 From: Ton Roosendaal Date: Tue, 14 Feb 2006 17:32:49 +0000 Subject: 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. --- source/blender/blenkernel/BKE_colortools.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source/blender/blenkernel/BKE_colortools.h') 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 -- cgit v1.2.3