From c3adb61dcc6b550efa1df0eb5c8a4729bd47350a Mon Sep 17 00:00:00 2001 From: Ton Roosendaal Date: Fri, 24 Nov 2006 16:56:02 +0000 Subject: 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. --- source/blender/makesdna/DNA_color_types.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (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 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 -- cgit v1.2.3