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>2012-07-27 13:32:47 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-07-27 13:32:47 +0400
commitb10a35a9a9128531347e60be530631b39386dcb2 (patch)
treebea13c8ae1f9557b4dc359eb173d0326440884dc /source/blender/makesdna/DNA_node_types.h
parent93c29aaeb1b0021bac6cb09da1f0cfc7ca90809e (diff)
motion blur for mask node:
TODO - add shutter speed option - add blur option
Diffstat (limited to 'source/blender/makesdna/DNA_node_types.h')
-rw-r--r--source/blender/makesdna/DNA_node_types.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/source/blender/makesdna/DNA_node_types.h b/source/blender/makesdna/DNA_node_types.h
index b06c9465c25..8d36b428aca 100644
--- a/source/blender/makesdna/DNA_node_types.h
+++ b/source/blender/makesdna/DNA_node_types.h
@@ -375,8 +375,9 @@ enum {
};
enum {
- CMP_NODEFLAG_MASK_AA = (1 << 0),
- CMP_NODEFLAG_MASK_NO_FEATHER = (1 << 1),
+ CMP_NODEFLAG_MASK_AA = (1 << 0),
+ CMP_NODEFLAG_MASK_NO_FEATHER = (1 << 1),
+ CMP_NODEFLAG_MASK_MOTION_BLUR = (1 << 2),
/* we may want multiple aspect options, exposed as an rna enum */
CMP_NODEFLAG_MASK_FIXED = (1 << 8),