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>2014-02-13 04:47:00 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-02-13 04:48:46 +0400
commit108ad3442960ef6ead3015736b3de679146f7a8d (patch)
tree7bc45177392eaf5c97b43a463052e299ded7c500 /source/blender/makesdna/DNA_mask_types.h
parent6ee9d1b69db0064abb03d74dbc365cf860a3c3d9 (diff)
Mask: option not to treat overlapping curves as holes
Diffstat (limited to 'source/blender/makesdna/DNA_mask_types.h')
-rw-r--r--source/blender/makesdna/DNA_mask_types.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_mask_types.h b/source/blender/makesdna/DNA_mask_types.h
index a72e287c16f..642bc733077 100644
--- a/source/blender/makesdna/DNA_mask_types.h
+++ b/source/blender/makesdna/DNA_mask_types.h
@@ -216,7 +216,10 @@ enum {
/* masklay->flag */
enum {
MASK_LAYERFLAG_LOCKED = (1 << 4),
- MASK_LAYERFLAG_SELECT = (1 << 5)
+ MASK_LAYERFLAG_SELECT = (1 << 5),
+
+ /* no holes */
+ MASK_LAYERFLAG_FILL_DISCRETE = (1 << 6),
};
/* masklay_shape->flag */