Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/sculpt_paint/paint_intern.h
| Show All 33 Lines | |||||
| struct Object; | struct Object; | ||||
| struct Paint; | struct Paint; | ||||
| struct PaintCurve; | struct PaintCurve; | ||||
| struct PaintStroke; | struct PaintStroke; | ||||
| struct PointerRNA; | struct PointerRNA; | ||||
| struct RegionView3D; | struct RegionView3D; | ||||
| struct Scene; | struct Scene; | ||||
| struct UndoStep; | struct UndoStep; | ||||
| struct EDSelectID_Context; | |||||
| struct VPaint; | struct VPaint; | ||||
| struct ViewContext; | struct ViewContext; | ||||
| struct bContext; | struct bContext; | ||||
| struct rcti; | struct rcti; | ||||
| struct wmEvent; | struct wmEvent; | ||||
| struct wmOperator; | struct wmOperator; | ||||
| struct wmOperatorType; | struct wmOperatorType; | ||||
| struct wmWindowManager; | struct wmWindowManager; | ||||
| ▲ Show 20 Lines • Show All 260 Lines • ▼ Show 20 Lines | void paint_get_tex_pixel_col(const struct MTex *mtex, | ||||
| float u, | float u, | ||||
| float v, | float v, | ||||
| float rgba[4], | float rgba[4], | ||||
| struct ImagePool *pool, | struct ImagePool *pool, | ||||
| int thread, | int thread, | ||||
| bool convert, | bool convert, | ||||
| struct ColorSpace *colorspace); | struct ColorSpace *colorspace); | ||||
| void paint_sample_color( | void paint_sample_color(struct bContext *C, | ||||
| struct bContext *C, struct ARegion *ar, int x, int y, bool texpaint_proj, bool palette); | struct ARegion *ar, | ||||
| struct EDSelectID_Context **sel_id_ctx, | |||||
| int x, | |||||
| int y, | |||||
| bool texpaint_proj, | |||||
| bool palette); | |||||
| void paint_stroke_operator_properties(struct wmOperatorType *ot); | void paint_stroke_operator_properties(struct wmOperatorType *ot); | ||||
| void BRUSH_OT_curve_preset(struct wmOperatorType *ot); | void BRUSH_OT_curve_preset(struct wmOperatorType *ot); | ||||
| void PAINT_OT_face_select_linked(struct wmOperatorType *ot); | void PAINT_OT_face_select_linked(struct wmOperatorType *ot); | ||||
| void PAINT_OT_face_select_linked_pick(struct wmOperatorType *ot); | void PAINT_OT_face_select_linked_pick(struct wmOperatorType *ot); | ||||
| void PAINT_OT_face_select_all(struct wmOperatorType *ot); | void PAINT_OT_face_select_all(struct wmOperatorType *ot); | ||||
| ▲ Show 20 Lines • Show All 74 Lines • Show Last 20 Lines | |||||