Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/include/ED_paint.h
| Show All 36 Lines | |||||
| /* paint_image.c */ | /* paint_image.c */ | ||||
| void ED_imapaint_clear_partial_redraw(void); | void ED_imapaint_clear_partial_redraw(void); | ||||
| void ED_imapaint_dirty_region( | void ED_imapaint_dirty_region( | ||||
| struct Image *ima, struct ImBuf *ibuf, int x, int y, int w, int h, bool find_old); | struct Image *ima, struct ImBuf *ibuf, int x, int y, int w, int h, bool find_old); | ||||
| void ED_imapaint_bucket_fill(struct bContext *C, float color[3], struct wmOperator *op); | void ED_imapaint_bucket_fill(struct bContext *C, float color[3], struct wmOperator *op); | ||||
| /* paint_image_undo.c */ | /* paint_image_undo.c */ | ||||
| void ED_image_undo_push_begin(const char *name, int paint_mode); | void ED_image_undo_push_begin(const char *name, int paint_mode); | ||||
| void ED_image_undo_push_begin_with_image(const char *name, | |||||
| struct Image *image, | |||||
| struct ImBuf *ibuf); | |||||
| void ED_image_undo_push_end(void); | void ED_image_undo_push_end(void); | ||||
| void ED_image_undo_restore(struct UndoStep *us); | void ED_image_undo_restore(struct UndoStep *us); | ||||
| void ED_image_undosys_type(struct UndoType *ut); | void ED_image_undosys_type(struct UndoType *ut); | ||||
| /* paint_curve_undo.c */ | /* paint_curve_undo.c */ | ||||
| void ED_paintcurve_undo_push_begin(const char *name); | void ED_paintcurve_undo_push_begin(const char *name); | ||||
| void ED_paintcurve_undo_push_end(void); | void ED_paintcurve_undo_push_end(void); | ||||
| void ED_paintcurve_undosys_type(struct UndoType *ut); | void ED_paintcurve_undosys_type(struct UndoType *ut); | ||||
| #endif /* __ED_PAINT_H__ */ | #endif /* __ED_PAINT_H__ */ | ||||