Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/sculpt_paint/paint_intern.h
| Show First 20 Lines • Show All 81 Lines • ▼ Show 20 Lines | |||||
| 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); | 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_brush_tool_poll(struct bContext *C); | ||||
| void paint_cursor_start(struct Paint *p, bool (*poll)(struct bContext *C)); | void paint_cursor_start(struct Paint *p, bool (*poll)(struct bContext *C)); | ||||
| void paint_cursor_delete_textures(void); | void paint_cursor_delete_textures(void); | ||||
| /* paint_vertex.c */ | /* paint_vertex.c */ | ||||
| bool weight_paint_poll(struct bContext *C); | bool weight_paint_poll(struct bContext *C); | ||||
| bool weight_paint_poll_ignore_tool(bContext *C); | bool weight_paint_poll_ignore_tool(bContext *C); | ||||
| bool weight_paint_mode_poll(struct bContext *C); | bool weight_paint_mode_poll(struct bContext *C); | ||||
| bool vertex_paint_poll(struct bContext *C); | bool vertex_paint_poll(struct bContext *C); | ||||
| ▲ Show 20 Lines • Show All 270 Lines • Show Last 20 Lines | |||||