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:
authorCampbell Barton <ideasman42@gmail.com>2016-05-04 16:56:38 +0300
committerCampbell Barton <ideasman42@gmail.com>2016-05-04 17:06:55 +0300
commitddd6be1834692c63353e47ab8d94e8dfc576c906 (patch)
tree9199716d98ae1e51c3a8ef67a2833d5aa7cbffef /source/blender/makesdna
parent980f3c36937a5b7b0a967b4c68c43168ccc583b9 (diff)
Compositor: negative color support for ASC-CDL offset
Since the color wheel can't handle negative colors usefully, use a basis value for the initial RGB.
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/DNA_node_types.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_node_types.h b/source/blender/makesdna/DNA_node_types.h
index c75a019a28e..6cba3322135 100644
--- a/source/blender/makesdna/DNA_node_types.h
+++ b/source/blender/makesdna/DNA_node_types.h
@@ -689,6 +689,8 @@ typedef struct NodeColorBalance {
float slope[3];
float offset[3];
float power[3];
+ float offset_basis;
+ char _pad[4];
/* LGG parameters */
float lift[3];