Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_brush_enums.h
| Show First 20 Lines • Show All 112 Lines • ▼ Show 20 Lines | typedef enum eGPDbrush_Flag2 { | ||||
| /* Brush use Pressure random pressure */ | /* Brush use Pressure random pressure */ | ||||
| GP_BRUSH_USE_PRESSURE_RAND_PRESS = (1 << 9), | GP_BRUSH_USE_PRESSURE_RAND_PRESS = (1 << 9), | ||||
| /* Brush use Strength random pressure */ | /* Brush use Strength random pressure */ | ||||
| GP_BRUSH_USE_STRENGTH_RAND_PRESS = (1 << 10), | GP_BRUSH_USE_STRENGTH_RAND_PRESS = (1 << 10), | ||||
| /* Brush use UV random pressure */ | /* Brush use UV random pressure */ | ||||
| GP_BRUSH_USE_UV_RAND_PRESS = (1 << 11), | GP_BRUSH_USE_UV_RAND_PRESS = (1 << 11), | ||||
| } eGPDbrush_Flag2; | } eGPDbrush_Flag2; | ||||
| /* BrushGpencilSettings->gp_fill_draw_mode */ | /* BrushGpencilSettings->fill_draw_mode */ | ||||
| typedef enum eGP_FillDrawModes { | typedef enum eGP_FillDrawModes { | ||||
| GP_FILL_DMODE_BOTH = 0, | GP_FILL_DMODE_BOTH = 0, | ||||
| GP_FILL_DMODE_STROKE = 1, | GP_FILL_DMODE_STROKE = 1, | ||||
| GP_FILL_DMODE_CONTROL = 2, | GP_FILL_DMODE_CONTROL = 2, | ||||
| } eGP_FillDrawModes; | } eGP_FillDrawModes; | ||||
| /* BrushGpencilSettings->fill_extend_mode */ | |||||
| typedef enum eGP_FillExtendModes { | |||||
| GP_FILL_EMODE_RADIUS = 0, | |||||
| GP_FILL_EMODE_EXTEND = 1, | |||||
| } eGP_FillExtendModes; | |||||
| /* BrushGpencilSettings->fill_layer_mode */ | /* BrushGpencilSettings->fill_layer_mode */ | ||||
| typedef enum eGP_FillLayerModes { | typedef enum eGP_FillLayerModes { | ||||
| GP_FILL_GPLMODE_VISIBLE = 0, | GP_FILL_GPLMODE_VISIBLE = 0, | ||||
| GP_FILL_GPLMODE_ACTIVE = 1, | GP_FILL_GPLMODE_ACTIVE = 1, | ||||
| GP_FILL_GPLMODE_ALL_ABOVE = 2, | GP_FILL_GPLMODE_ALL_ABOVE = 2, | ||||
| GP_FILL_GPLMODE_ALL_BELOW = 3, | GP_FILL_GPLMODE_ALL_BELOW = 3, | ||||
| GP_FILL_GPLMODE_ABOVE = 4, | GP_FILL_GPLMODE_ABOVE = 4, | ||||
| GP_FILL_GPLMODE_BELOW = 5, | GP_FILL_GPLMODE_BELOW = 5, | ||||
| ▲ Show 20 Lines • Show All 508 Lines • Show Last 20 Lines | |||||