Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/BKE_paint.h
| Show First 20 Lines • Show All 493 Lines • ▼ Show 20 Lines | struct { /* Special handling for multires meshes */ | ||||
| int level; | int level; | ||||
| } multires; | } multires; | ||||
| /* Depsgraph for the Cloth Brush solver to get the colliders. */ | /* Depsgraph for the Cloth Brush solver to get the colliders. */ | ||||
| struct Depsgraph *depsgraph; | struct Depsgraph *depsgraph; | ||||
| /* These are always assigned to base mesh data when using PBVH_FACES and PBVH_GRIDS. */ | /* These are always assigned to base mesh data when using PBVH_FACES and PBVH_GRIDS. */ | ||||
| struct MVert *mvert; | struct MVert *mvert; | ||||
| const float (*vert_normals)[3]; | |||||
| struct MPoly *mpoly; | struct MPoly *mpoly; | ||||
| struct MLoop *mloop; | struct MLoop *mloop; | ||||
| /* These contain the vertex and poly counts of the final mesh. */ | /* These contain the vertex and poly counts of the final mesh. */ | ||||
| int totvert, totpoly; | int totvert, totpoly; | ||||
| struct KeyBlock *shapekey_active; | struct KeyBlock *shapekey_active; | ||||
| struct MPropCol *vcol; | struct MPropCol *vcol; | ||||
| ▲ Show 20 Lines • Show All 219 Lines • Show Last 20 Lines | |||||