Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/BKE_paint.h
| Show First 20 Lines • Show All 396 Lines • ▼ Show 20 Lines | struct { | ||||
| /* Needed to continuously re-apply over the same weights (BRUSH_ACCUMULATE disabled). | /* Needed to continuously re-apply over the same weights (BRUSH_ACCUMULATE disabled). | ||||
| * Lazy initialize as needed (flag is set to 1 to tag it as uninitialized). */ | * Lazy initialize as needed (flag is set to 1 to tag it as uninitialized). */ | ||||
| struct MDeformVert *dvert_prev; | struct MDeformVert *dvert_prev; | ||||
| } wpaint; | } wpaint; | ||||
| /* TODO: identify sculpt-only fields */ | /* TODO: identify sculpt-only fields */ | ||||
| // struct { ... } sculpt; | // struct { ... } sculpt; | ||||
| } mode; | } mode; | ||||
| int mode_type; | eObjectMode mode_type; | ||||
| /* This flag prevents PBVH from being freed when creating the vp_handle for texture paint. */ | /* This flag prevents PBVH from being freed when creating the vp_handle for texture paint. */ | ||||
| bool building_vp_handle; | bool building_vp_handle; | ||||
| /** | /** | ||||
| * ID data is older than sculpt-mode data. | * ID data is older than sculpt-mode data. | ||||
| * Set #Main.is_memfile_undo_flush_needed when enabling. | * Set #Main.is_memfile_undo_flush_needed when enabling. | ||||
| */ | */ | ||||
| Show All 37 Lines | |||||