Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/sculpt_paint/paint_intern.h
| Show First 20 Lines • Show All 75 Lines • ▼ Show 20 Lines | |||||
| bool paint_supports_texture(enum ePaintMode mode); | bool paint_supports_texture(enum ePaintMode mode); | ||||
| bool paint_supports_jitter(enum ePaintMode mode); | bool paint_supports_jitter(enum ePaintMode mode); | ||||
| struct wmKeyMap *paint_stroke_modal_keymap(struct wmKeyConfig *keyconf); | struct wmKeyMap *paint_stroke_modal_keymap(struct wmKeyConfig *keyconf); | ||||
| int paint_stroke_modal(struct bContext *C, struct wmOperator *op, const struct wmEvent *event); | int paint_stroke_modal(struct bContext *C, struct wmOperator *op, const struct wmEvent *event); | ||||
| int paint_stroke_exec(struct bContext *C, struct wmOperator *op); | int paint_stroke_exec(struct bContext *C, struct wmOperator *op); | ||||
| void paint_stroke_cancel(struct bContext *C, struct wmOperator *op); | void paint_stroke_cancel(struct bContext *C, struct wmOperator *op); | ||||
| bool paint_stroke_flipped(struct PaintStroke *stroke); | bool paint_stroke_flipped(struct PaintStroke *stroke); | ||||
| bool paint_stroke_inverted(struct PaintStroke *stroke); | |||||
| struct ViewContext *paint_stroke_view_context(struct PaintStroke *stroke); | struct ViewContext *paint_stroke_view_context(struct PaintStroke *stroke); | ||||
| void *paint_stroke_mode_data(struct PaintStroke *stroke); | void *paint_stroke_mode_data(struct PaintStroke *stroke); | ||||
| float paint_stroke_distance_get(struct PaintStroke *stroke); | float paint_stroke_distance_get(struct PaintStroke *stroke); | ||||
| void paint_stroke_set_mode_data(struct PaintStroke *stroke, void *mode_data); | void paint_stroke_set_mode_data(struct PaintStroke *stroke, void *mode_data); | ||||
| bool paint_poll(struct bContext *C); | bool paint_poll(struct bContext *C); | ||||
| void paint_cursor_start(struct bContext *C, bool (*poll)(struct bContext *C)); | void paint_cursor_start(struct bContext *C, bool (*poll)(struct bContext *C)); | ||||
| void paint_cursor_start_explicit(struct Paint *p, struct wmWindowManager *wm, bool (*poll)(struct bContext *C)); | void paint_cursor_start_explicit(struct Paint *p, struct wmWindowManager *wm, bool (*poll)(struct bContext *C)); | ||||
| void paint_cursor_delete_textures(void); | void paint_cursor_delete_textures(void); | ||||
| ▲ Show 20 Lines • Show All 263 Lines • Show Last 20 Lines | |||||