Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/sculpt_paint/paint_intern.h
| Context not available. | |||||
| 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); | ||||
| unsigned int mcol_lighten(unsigned int col1, unsigned int col2, int fac); | |||||
sergey: I don't really see other areas using this functions. Why do you need them public? | |||||
sobotkaUnsubmitted Not Done Inline ActionsThis is because the original function was BLI_INLINED. The options were thus:
I chose the former to limit impact. Should I BLI_INLINE the luminance function instead? sobotka: This is because the original function was BLI_INLINED. The options were thus:
- Make the two… | |||||
Not Done Inline ActionsNot needed at all now I guess? psy-fi: Not needed at all now I guess? | |||||
| unsigned int mcol_darken(unsigned int col1, unsigned int col2, int fac); | |||||
| /* paint_vertex_proj.c */ | /* paint_vertex_proj.c */ | ||||
| Context not available. | |||||
I don't really see other areas using this functions. Why do you need them public?