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-06-21 16:45:53 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-06-21 16:45:53 +0400
commita803ce42df3a9148ce5128f054345f051cd6f57d (patch)
treebf7394c097b0c70ce66ac928bdfe0459ec6c69c2 /source/blender/makesdna/DNA_node_types.h
parent54156e2b824c9e5a4293060b194630630d1f9dc7 (diff)
negate previous commit flag, this way existing files dont loose their feather.
Diffstat (limited to 'source/blender/makesdna/DNA_node_types.h')
-rw-r--r--source/blender/makesdna/DNA_node_types.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesdna/DNA_node_types.h b/source/blender/makesdna/DNA_node_types.h
index ef6fba8cf93..bd9b0a4585e 100644
--- a/source/blender/makesdna/DNA_node_types.h
+++ b/source/blender/makesdna/DNA_node_types.h
@@ -369,8 +369,8 @@ enum {
};
enum {
- CMP_NODEFLAG_MASK_AA = (1 << 0),
- CMP_NODEFLAG_MASK_FEATHER = (1 << 1)
+ CMP_NODEFLAG_MASK_AA = (1 << 0),
+ CMP_NODEFLAG_MASK_NO_FEATHER = (1 << 1)
};
typedef struct NodeFrame {