Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/include/ED_image.h
| Show All 33 Lines | |||||
| struct bContext; | struct bContext; | ||||
| struct Image; | struct Image; | ||||
| struct ImageUser; | struct ImageUser; | ||||
| struct ImBuf; | struct ImBuf; | ||||
| struct ToolSettings; | struct ToolSettings; | ||||
| struct wmWindowManager; | struct wmWindowManager; | ||||
| struct ARegion; | struct ARegion; | ||||
| struct Scene; | struct Scene; | ||||
| struct SceneLayer; | struct ViewLayer; | ||||
| /* image_edit.c, exported for transform */ | /* image_edit.c, exported for transform */ | ||||
| struct Image *ED_space_image(struct SpaceImage *sima); | struct Image *ED_space_image(struct SpaceImage *sima); | ||||
| void ED_space_image_set(struct SpaceImage *sima, struct Scene *scene, struct Object *obedit, struct Image *ima); | void ED_space_image_set(struct SpaceImage *sima, struct Scene *scene, struct Object *obedit, struct Image *ima); | ||||
| struct Mask *ED_space_image_get_mask(struct SpaceImage *sima); | struct Mask *ED_space_image_get_mask(struct SpaceImage *sima); | ||||
| void ED_space_image_set_mask(struct bContext *C, struct SpaceImage *sima, struct Mask *mask); | void ED_space_image_set_mask(struct bContext *C, struct SpaceImage *sima, struct Mask *mask); | ||||
| bool ED_space_image_color_sample(struct SpaceImage *sima, struct ARegion *ar, int mval[2], float r_col[3]); | bool ED_space_image_color_sample(struct SpaceImage *sima, struct ARegion *ar, int mval[2], float r_col[3]); | ||||
| Show All 19 Lines | |||||
| bool ED_image_slot_cycle(struct Image *image, int direction); | bool ED_image_slot_cycle(struct Image *image, int direction); | ||||
| bool ED_space_image_show_render(struct SpaceImage *sima); | bool ED_space_image_show_render(struct SpaceImage *sima); | ||||
| bool ED_space_image_show_paint(struct SpaceImage *sima); | bool ED_space_image_show_paint(struct SpaceImage *sima); | ||||
| bool ED_space_image_show_uvedit(struct SpaceImage *sima, struct Object *obedit); | bool ED_space_image_show_uvedit(struct SpaceImage *sima, struct Object *obedit); | ||||
| bool ED_space_image_paint_curve(const struct bContext *C); | bool ED_space_image_paint_curve(const struct bContext *C); | ||||
| bool ED_space_image_check_show_maskedit(struct SceneLayer *sl, struct SpaceImage *sima); | bool ED_space_image_check_show_maskedit(struct ViewLayer *sl, struct SpaceImage *sima); | ||||
| int ED_space_image_maskedit_poll(struct bContext *C); | int ED_space_image_maskedit_poll(struct bContext *C); | ||||
| int ED_space_image_maskedit_mask_poll(struct bContext *C); | int ED_space_image_maskedit_mask_poll(struct bContext *C); | ||||
| void ED_image_draw_info(struct Scene *scene, struct ARegion *ar, bool color_manage, bool use_default_view, int channels, int x, int y, | void ED_image_draw_info(struct Scene *scene, struct ARegion *ar, bool color_manage, bool use_default_view, int channels, int x, int y, | ||||
| const unsigned char cp[4], const float fp[4], const float linearcol[4], int *zp, float *zpf); | const unsigned char cp[4], const float fp[4], const float linearcol[4], int *zp, float *zpf); | ||||
| bool ED_space_image_show_cache(struct SpaceImage *sima); | bool ED_space_image_show_cache(struct SpaceImage *sima); | ||||
| #endif /* __ED_IMAGE_H__ */ | #endif /* __ED_IMAGE_H__ */ | ||||