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>2012-06-08 11:54:46 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2012-06-08 11:54:46 +0400
commitfc07b1fce3a6f1d6962840859c763bd192fbdcd7 (patch)
tree852e55e25e36e1d46584ebd8b57531193eb24bfa /source/blender/makesdna/DNA_mask_types.h
parentb0c868c3b38663817678ae198ad84e7369d7957c (diff)
Mask editing: remove use_parent property and use check if paren't id is set instead
Diffstat (limited to 'source/blender/makesdna/DNA_mask_types.h')
-rw-r--r--source/blender/makesdna/DNA_mask_types.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/source/blender/makesdna/DNA_mask_types.h b/source/blender/makesdna/DNA_mask_types.h
index 626242c1a8d..e4c27a57d85 100644
--- a/source/blender/makesdna/DNA_mask_types.h
+++ b/source/blender/makesdna/DNA_mask_types.h
@@ -51,7 +51,8 @@ typedef struct Mask {
} Mask;
typedef struct MaskParent {
- int flag; /* parenting flags */
+ // int flag; /* parenting flags */ /* not used */
+ int pad;
int id_type; /* type of parenting */
ID *id; /* ID block of entity to which mask/spline is parented to
* in case of parenting to movie tracking data set to MovieClip datablock */
@@ -130,7 +131,7 @@ typedef struct MaskLayer {
} MaskLayer;
/* MaskParent->flag */
-#define MASK_PARENT_ACTIVE (1 << 0)
+/* #define MASK_PARENT_ACTIVE (1 << 0) */ /* UNUSED */
/* MaskSpline->flag */
/* reserve (1 << 0) for SELECT */