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>2010-07-31 14:03:08 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-07-31 14:03:08 +0400
commit667a2cafbe91d93f1c5d409da58cf5d83a0ab15b (patch)
treeb4040467871ea1fe196dc16d1e4c7e2d5c2ad906 /source/blender/makesdna
parent1280b6f9024de7c7a3d67cd2dfb80820164bc802 (diff)
recent commit to make color balance work like the sequencer, I forgot that the gamma was inverted. fixed.
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/DNA_node_types.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_node_types.h b/source/blender/makesdna/DNA_node_types.h
index 872d69f3148..e3ac90bf881 100644
--- a/source/blender/makesdna/DNA_node_types.h
+++ b/source/blender/makesdna/DNA_node_types.h
@@ -314,6 +314,7 @@ typedef struct NodeColorBalance {
/* temp storage for inverted lift */
float lift_lgg[3];
+ float gamma_inv[3];
} NodeColorBalance;
typedef struct NodeColorspill {