Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_brush_enums.h
| Show First 20 Lines • Show All 85 Lines • ▼ Show 20 Lines | typedef enum eGPDbrush_Flag { | ||||
| /* Do not erase strokes oLcluded */ | /* Do not erase strokes oLcluded */ | ||||
| GP_BRUSH_OCCLUDE_ERASER = (1 << 15), | GP_BRUSH_OCCLUDE_ERASER = (1 << 15), | ||||
| /* Post process trim stroke */ | /* Post process trim stroke */ | ||||
| GP_BRUSH_TRIM_STROKE = (1 << 16), | GP_BRUSH_TRIM_STROKE = (1 << 16), | ||||
| /* Post process convert to outline stroke */ | /* Post process convert to outline stroke */ | ||||
| GP_BRUSH_OUTLINE_STROKE = (1 << 17), | GP_BRUSH_OUTLINE_STROKE = (1 << 17), | ||||
| /* Collide with stroke. */ | /* Collide with stroke. */ | ||||
| GP_BRUSH_FILL_STROKE_COLLIDE = (1 << 18), | GP_BRUSH_FILL_STROKE_COLLIDE = (1 << 18), | ||||
| /* Show brush size */ | |||||
| GP_BRUSH_SHOW_DRAW_SIZE = (1 << 19), | |||||
| } eGPDbrush_Flag; | } eGPDbrush_Flag; | ||||
| typedef enum eGPDbrush_Flag2 { | typedef enum eGPDbrush_Flag2 { | ||||
| /* Brush use random Hue at stroke level */ | /* Brush use random Hue at stroke level */ | ||||
| GP_BRUSH_USE_HUE_AT_STROKE = (1 << 0), | GP_BRUSH_USE_HUE_AT_STROKE = (1 << 0), | ||||
| /* Brush use random Saturation at stroke level */ | /* Brush use random Saturation at stroke level */ | ||||
| GP_BRUSH_USE_SAT_AT_STROKE = (1 << 1), | GP_BRUSH_USE_SAT_AT_STROKE = (1 << 1), | ||||
| /* Brush use random Value at stroke level */ | /* Brush use random Value at stroke level */ | ||||
| ▲ Show 20 Lines • Show All 555 Lines • Show Last 20 Lines | |||||