Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/sculpt_paint/paint_intern.h
| Context not available. | |||||
| bool ED_vpaint_smooth(struct Object *ob); | bool ED_vpaint_smooth(struct Object *ob); | ||||
| bool ED_vpaint_color_transform(struct Object *ob, void(*transform_fun)(const float col[3], void *user_data, | |||||
| float r_col[3]), void *user_data); | |||||
| void vpaint_brightness_contrast(const float col[3], void *user_data, float r_col[3]); | |||||
| typedef struct BrightContrastData { | |||||
| float brightness; | |||||
| float contrast; | |||||
| } BrightContrastData; | |||||
| void vpaint_hue_sat(const float col[3], void *user_data, float r_col[3]); | |||||
| typedef struct HueSatData { | |||||
| float hue; | |||||
| float sat; | |||||
| float val; | |||||
| } HueSatData; | |||||
| void vpaint_invert(const float col[3], void *user_data, float r_col[3]); | |||||
| void vpaint_levels(const float col[3], void *user_data, float r_col[3]); | |||||
| typedef struct LevelsData { | |||||
| float gain; | |||||
| float offset; | |||||
| } LevelsData; | |||||
| void PAINT_OT_weight_paint_toggle(struct wmOperatorType *ot); | void PAINT_OT_weight_paint_toggle(struct wmOperatorType *ot); | ||||
| void PAINT_OT_weight_paint(struct wmOperatorType *ot); | void PAINT_OT_weight_paint(struct wmOperatorType *ot); | ||||
| void PAINT_OT_weight_set(struct wmOperatorType *ot); | void PAINT_OT_weight_set(struct wmOperatorType *ot); | ||||
| Context not available. | |||||