Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/sculpt_paint/paint_intern.h
| Show First 20 Lines • Show All 114 Lines • ▼ Show 20 Lines | enum { | ||||
| WPAINT_GRADIENT_TYPE_LINEAR, | WPAINT_GRADIENT_TYPE_LINEAR, | ||||
| WPAINT_GRADIENT_TYPE_RADIAL | WPAINT_GRADIENT_TYPE_RADIAL | ||||
| }; | }; | ||||
| void PAINT_OT_weight_gradient(struct wmOperatorType *ot); | void PAINT_OT_weight_gradient(struct wmOperatorType *ot); | ||||
| void PAINT_OT_vertex_paint_toggle(struct wmOperatorType *ot); | void PAINT_OT_vertex_paint_toggle(struct wmOperatorType *ot); | ||||
| void PAINT_OT_vertex_paint(struct wmOperatorType *ot); | void PAINT_OT_vertex_paint(struct wmOperatorType *ot); | ||||
| unsigned int vpaint_get_current_col(struct Scene *scene, struct VPaint *vp); | unsigned int vpaint_get_current_col(struct Scene *scene, struct VPaint *vp, bool secondary); | ||||
| /* paint_vertex_color_utils.c */ | /* paint_vertex_color_utils.c */ | ||||
| unsigned int ED_vpaint_blend_tool( | unsigned int ED_vpaint_blend_tool( | ||||
| const int tool, const uint col, | const int tool, const uint col, | ||||
| const uint paintcol, const int alpha_i); | const uint paintcol, const int alpha_i); | ||||
| bool ED_vpaint_color_transform( | bool ED_vpaint_color_transform( | ||||
| struct Object *ob, VPaintTransform_Callback vpaint_tx_fn, const void *user_data); | struct Object *ob, VPaintTransform_Callback vpaint_tx_fn, const void *user_data); | ||||
| ▲ Show 20 Lines • Show All 247 Lines • Show Last 20 Lines | |||||