Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/intern/pbvh_intern.h
| Show First 20 Lines • Show All 159 Lines • ▼ Show 20 Lines | struct PBVH { | ||||
| CCGElem **grids; | CCGElem **grids; | ||||
| void **gridfaces; | void **gridfaces; | ||||
| const DMFlagMat *grid_flag_mats; | const DMFlagMat *grid_flag_mats; | ||||
| int totgrid; | int totgrid; | ||||
| BLI_bitmap **grid_hidden; | BLI_bitmap **grid_hidden; | ||||
| /* Used during BVH build and later to mark that a vertex needs to update | /* Used during BVH build and later to mark that a vertex needs to update | ||||
| * (its normal must be recalculated). */ | * (its normal must be recalculated). */ | ||||
| BLI_bitmap *vert_bitmap; | bool *vert_bitmap; | ||||
| #ifdef PERFCNTRS | #ifdef PERFCNTRS | ||||
| int perf_modified; | int perf_modified; | ||||
| #endif | #endif | ||||
| /* flag are verts/faces deformed */ | /* flag are verts/faces deformed */ | ||||
| bool deformed; | bool deformed; | ||||
| bool show_mask; | bool show_mask; | ||||
| ▲ Show 20 Lines • Show All 104 Lines • Show Last 20 Lines | |||||