Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/include/ED_mask.h
| Show All 18 Lines | |||||
| /** \file | /** \file | ||||
| * \ingroup editors | * \ingroup editors | ||||
| */ | */ | ||||
| #ifndef __ED_MASK_H__ | #ifndef __ED_MASK_H__ | ||||
| #define __ED_MASK_H__ | #define __ED_MASK_H__ | ||||
| struct Depsgraph; | |||||
| struct KeyframeEditData; | struct KeyframeEditData; | ||||
| struct MaskLayer; | struct MaskLayer; | ||||
| struct MaskLayerShape; | struct MaskLayerShape; | ||||
| struct bContext; | struct bContext; | ||||
| struct wmKeyConfig; | struct wmKeyConfig; | ||||
| /* mask_edit.c */ | /* mask_edit.c */ | ||||
| void ED_mask_get_size(struct ScrArea *sa, int *width, int *height); | void ED_mask_get_size(struct ScrArea *sa, int *width, int *height); | ||||
| Show All 15 Lines | |||||
| bool ED_mask_selected_minmax(const struct bContext *C, float min[2], float max[2]); | bool ED_mask_selected_minmax(const struct bContext *C, float min[2], float max[2]); | ||||
| void ED_operatortypes_mask(void); | void ED_operatortypes_mask(void); | ||||
| void ED_keymap_mask(struct wmKeyConfig *keyconf); | void ED_keymap_mask(struct wmKeyConfig *keyconf); | ||||
| void ED_operatormacros_mask(void); | void ED_operatormacros_mask(void); | ||||
| /* mask_draw.c */ | /* mask_draw.c */ | ||||
| void ED_mask_draw(const struct bContext *C, const char draw_flag, const char draw_type); | void ED_mask_draw(const struct bContext *C, const char draw_flag, const char draw_type); | ||||
| void ED_mask_draw_region(struct Mask *mask, | void ED_mask_draw_region(struct Depsgraph *depsgraph, | ||||
| struct Mask *mask, | |||||
| struct ARegion *ar, | struct ARegion *ar, | ||||
| const char draw_flag, | const char draw_flag, | ||||
| const char draw_type, | const char draw_type, | ||||
| const char overlay_mode, | const char overlay_mode, | ||||
| const int width_i, | const int width_i, | ||||
| const int height_i, | const int height_i, | ||||
| const float aspx, | const float aspx, | ||||
| const float aspy, | const float aspy, | ||||
| ▲ Show 20 Lines • Show All 47 Lines • Show Last 20 Lines | |||||