Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/sculpt_paint/paint_intern.h
| Show First 20 Lines • Show All 300 Lines • ▼ Show 20 Lines | |||||
| /* stroke operator */ | /* stroke operator */ | ||||
| typedef enum BrushStrokeMode { | typedef enum BrushStrokeMode { | ||||
| BRUSH_STROKE_NORMAL, | BRUSH_STROKE_NORMAL, | ||||
| BRUSH_STROKE_INVERT, | BRUSH_STROKE_INVERT, | ||||
| BRUSH_STROKE_SMOOTH | BRUSH_STROKE_SMOOTH | ||||
| } BrushStrokeMode; | } BrushStrokeMode; | ||||
| /* paint_ops.c */ | |||||
| typedef enum { | |||||
| RC_COLOR = 1, | |||||
| RC_ROTATION = 2, | |||||
| RC_ZOOM = 4, | |||||
| RC_WEIGHT = 8, | |||||
| RC_SECONDARY_ROTATION = 16, | |||||
| RC_COLOR_OVERRIDE = 32, | |||||
| } RCFlags; | |||||
| void set_brush_rc_props( | |||||
| struct PointerRNA *ptr, const char *paint, const char *prop, const char *secondary_prop, | |||||
| RCFlags flags); | |||||
| /* paint_hide.c */ | /* paint_hide.c */ | ||||
| typedef enum { | typedef enum { | ||||
| PARTIALVIS_HIDE, | PARTIALVIS_HIDE, | ||||
| PARTIALVIS_SHOW | PARTIALVIS_SHOW | ||||
| } PartialVisAction; | } PartialVisAction; | ||||
| typedef enum { | typedef enum { | ||||
| ▲ Show 20 Lines • Show All 48 Lines • Show Last 20 Lines | |||||