From a56f4fee38e17d05964941a5edc2850c217309d7 Mon Sep 17 00:00:00 2001 From: Jeroen Bakker Date: Thu, 19 Jul 2012 11:05:18 +0000 Subject: Fix for * [#32040] size-input of a blur-node is uniform for the whole picture * [#32062] Blur node Size input is not working with * [#32140] Blur Node using a greyscale input as size multiplier fails to work Node now has a new option (new compositor cannot detect if the connected part is a single value, or an image connected). With this option the use of a reference image to multiply the size of the blur per pixel can be enabled/disabled. Regards, Jeroen - At Mind - --- source/blender/makesdna/DNA_node_types.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'source/blender/makesdna/DNA_node_types.h') diff --git a/source/blender/makesdna/DNA_node_types.h b/source/blender/makesdna/DNA_node_types.h index 1e2f6eabce6..a7f854f603c 100644 --- a/source/blender/makesdna/DNA_node_types.h +++ b/source/blender/makesdna/DNA_node_types.h @@ -374,6 +374,10 @@ enum { CMP_NODEFLAG_MASK_NO_FEATHER = (1 << 1) }; +enum { + CMP_NODEFLAG_BLUR_REFERENCE = (1 << 0), +}; + typedef struct NodeFrame { short flag; short label_size; -- cgit v1.2.3