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>2013-03-14 14:15:10 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2013-03-14 14:15:10 +0400
commitcf3b3a1ba2159792fad7cc0c8ccb98a855534823 (patch)
treed47f68221eb1ff3cd9102186a977eb2249939736 /source/blender/makesdna/DNA_node_types.h
parent0159647ada64591e4edbcb1284cf499fc2ae9c09 (diff)
Code cleanup: replace magic constant used for alpha ignore flag with a define.
Diffstat (limited to 'source/blender/makesdna/DNA_node_types.h')
-rw-r--r--source/blender/makesdna/DNA_node_types.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_node_types.h b/source/blender/makesdna/DNA_node_types.h
index b2b23828cee..2e24b6ed78d 100644
--- a/source/blender/makesdna/DNA_node_types.h
+++ b/source/blender/makesdna/DNA_node_types.h
@@ -860,4 +860,7 @@ typedef struct NodeShaderNormalMap {
/* image */
#define CMP_NODE_IMAGE_USE_STRAIGHT_OUTPUT 1
+/* viewer and cmposite output */
+#define CMP_NODE_OUTPUT_IGNORE_ALPHA 1
+
#endif