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:
authorTon Roosendaal <ton@blender.org>2006-11-24 19:56:02 +0300
committerTon Roosendaal <ton@blender.org>2006-11-24 19:56:02 +0300
commitc3adb61dcc6b550efa1df0eb5c8a4729bd47350a (patch)
tree3213f421a1f78581b03d00f3b79c541676d3f75a /source/blender/makesdna/DNA_color_types.h
parente600fdb882aaa39949c920a13df5ec0281075da2 (diff)
Composite Time node usablity improvement:
- now draws green 'current frame' line - when Time Node is active, hotkey I will allow inserting a value on current frame.
Diffstat (limited to 'source/blender/makesdna/DNA_color_types.h')
-rw-r--r--source/blender/makesdna/DNA_color_types.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_color_types.h b/source/blender/makesdna/DNA_color_types.h
index 32cbc39523b..a4224976f5f 100644
--- a/source/blender/makesdna/DNA_color_types.h
+++ b/source/blender/makesdna/DNA_color_types.h
@@ -68,13 +68,14 @@ typedef struct CurveMapping {
rctf curr, clipr; /* current rect, clip rect (is default rect too) */
CurveMap cm[4]; /* max 4 builtin curves per mapping struct now */
- float black[3], white[3]; /* black/white point */
+ float black[3], white[3]; /* black/white point (black[0] abused for current frame) */
float bwmul[3], padf; /* black/white point multiply value, for speed */
} CurveMapping;
/* cumapping->flag */
#define CUMA_DO_CLIP 1
#define CUMA_PREMULLED 2
+#define CUMA_DRAW_CFRA 4
#endif