Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_pointcache_types.h
| Show First 20 Lines • Show All 58 Lines • ▼ Show 20 Lines | |||||
| typedef struct PTCacheMem { | typedef struct PTCacheMem { | ||||
| struct PTCacheMem *next, *prev; | struct PTCacheMem *next, *prev; | ||||
| unsigned int frame, totpoint; | unsigned int frame, totpoint; | ||||
| unsigned int data_types, flag; | unsigned int data_types, flag; | ||||
| /** BPHYS_TOT_DATA. */ | /** BPHYS_TOT_DATA. */ | ||||
| void *data[8]; | void *data[8]; | ||||
| /** BPHYS_TOT_DATA. */ | |||||
| void *cur[8]; | |||||
| struct ListBase extradata; | struct ListBase extradata; | ||||
| } PTCacheMem; | } PTCacheMem; | ||||
| typedef struct PointCache { | typedef struct PointCache { | ||||
| struct PointCache *next, *prev; | struct PointCache *next, *prev; | ||||
| /** Generic flag. */ | /** Generic flag. */ | ||||
| int flag; | int flag; | ||||
| ▲ Show 20 Lines • Show All 92 Lines • Show Last 20 Lines | |||||