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:
authorJeroen Bakker <j.bakker@atmind.nl>2018-08-24 11:04:33 +0300
committerJeroen Bakker <j.bakker@atmind.nl>2018-08-24 11:04:33 +0300
commitb8c9df6f21587014cb6f11aa5bed6f9c1044e6ee (patch)
treeb106ebde0ac8edda4ec69ccc45f494a407bae5c4 /source/blender/makesdna/DNA_color_types.h
parentf029aefe3e051d213292cf0d9be20d5438ca618f (diff)
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.
Diffstat (limited to 'source/blender/makesdna/DNA_color_types.h')
-rw-r--r--source/blender/makesdna/DNA_color_types.h5
1 files changed, 3 insertions, 2 deletions
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 */