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:
authorSergey Sharybin <sergey.vfx@gmail.com>2015-12-09 17:31:39 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2016-01-14 14:13:55 +0300
commitcc55f97da9cca7a27f2313b7405d3aad277029d7 (patch)
tree0dd6047408ec255772dac4a9b79a6e50edcc1990 /source/blender/makesdna/DNA_node_types.h
parent73feae6f5dd81a81e0321db80e55c15c3518b7a0 (diff)
Compositor: Add option to extend image bounds when blurring
It is handy when doing some roto work and it's required to blur some mask or overaly before alpha-overing it on top of the footage. Quite straightforward option with the only limitation that variable size blur is not supported. Reviewers: campbellbarton Subscribers: hype, sebastian_k Differential Revision: https://developer.blender.org/D1663
Diffstat (limited to 'source/blender/makesdna/DNA_node_types.h')
-rw-r--r--source/blender/makesdna/DNA_node_types.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_node_types.h b/source/blender/makesdna/DNA_node_types.h
index 7aec437b62b..3b35320c803 100644
--- a/source/blender/makesdna/DNA_node_types.h
+++ b/source/blender/makesdna/DNA_node_types.h
@@ -503,7 +503,8 @@ enum {
};
enum {
- CMP_NODEFLAG_BLUR_VARIABLE_SIZE = (1 << 0)
+ CMP_NODEFLAG_BLUR_VARIABLE_SIZE = (1 << 0),
+ CMP_NODEFLAG_BLUR_EXTEND_BOUNDS = (1 << 1),
};
typedef struct NodeFrame {