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-06 18:38:47 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-06-06 18:38:47 +0400
commit2cb671591bca571a8a5988c087da2e380d395204 (patch)
treea51b2e04b5242d4af494fde31291608e5473656d /source/blender/editors/include/ED_mask.h
parent0499200e39204a349fda12fdd44c409c6e4e6fc8 (diff)
mask mode
- only keyframe selected mask layers - fix for crash in deleting animated mask layers (other than the first)
Diffstat (limited to 'source/blender/editors/include/ED_mask.h')
-rw-r--r--source/blender/editors/include/ED_mask.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/editors/include/ED_mask.h b/source/blender/editors/include/ED_mask.h
index 0c4c2f4788c..0c2f6807632 100644
--- a/source/blender/editors/include/ED_mask.h
+++ b/source/blender/editors/include/ED_mask.h
@@ -32,6 +32,7 @@
#define __ED_MASK_H__
struct wmKeyConfig;
+struct MaskLayer;
/* mask_editor.c */
void ED_operatortypes_mask(void);
@@ -42,6 +43,8 @@ void ED_operatormacros_mask(void);
void ED_mask_draw(const bContext *C, const char draw_flag, const char draw_type);
/* mask_shapekey.c */
+void ED_mask_layer_shape_auto_key(struct MaskLayer *masklay, const int frame);
int ED_mask_layer_shape_auto_key_all(struct Mask *mask, const int frame);
+int ED_mask_layer_shape_auto_key_select(struct Mask *mask, const int frame);
#endif /* ED_TEXT_H */