From b8c9df6f21587014cb6f11aa5bed6f9c1044e6ee Mon Sep 17 00:00:00 2001 From: Jeroen Bakker Date: Fri, 24 Aug 2018 10:04:33 +0200 Subject: Compositor: Added Weighted Standard Curve evaluation Available in RGB Curve node in the compositor and as modifier in the sequencer. I reshuffled the values of the enum. But a the first commit is just 1 day old I think that the order is more important than the file compatibility. --- source/blender/makesdna/DNA_color_types.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'source/blender/makesdna/DNA_color_types.h') diff --git a/source/blender/makesdna/DNA_color_types.h b/source/blender/makesdna/DNA_color_types.h index fe158f85cd9..def1a2bad91 100644 --- a/source/blender/makesdna/DNA_color_types.h +++ b/source/blender/makesdna/DNA_color_types.h @@ -107,8 +107,9 @@ typedef enum eCurveMappingPreset { /* CurveMapping->tone */ typedef enum eCurveMappingTone { - CURVE_TONE_STANDARD = 0, - CURVE_TONE_FILMLIKE = 1, + CURVE_TONE_STANDARD = 0, + CURVE_TONE_WEIGHTED_STANDARD = 1, + CURVE_TONE_FILMLIKE = 2, } eCurveMappingTone; /* histogram->mode */ -- cgit v1.2.3