Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/BKE_pointcache.h
| Show First 20 Lines • Show All 64 Lines • ▼ Show 20 Lines | |||||
| #define PTCACHE_TYPE_SMOKE_HIGHRES 4 | #define PTCACHE_TYPE_SMOKE_HIGHRES 4 | ||||
| #define PTCACHE_TYPE_DYNAMICPAINT 5 | #define PTCACHE_TYPE_DYNAMICPAINT 5 | ||||
| #define PTCACHE_TYPE_RIGIDBODY 6 | #define PTCACHE_TYPE_RIGIDBODY 6 | ||||
| #define PTCACHE_TYPE_SIM_PARTICLES 7 | #define PTCACHE_TYPE_SIM_PARTICLES 7 | ||||
| /* high bits reserved for flags that need to be stored in file */ | /* high bits reserved for flags that need to be stored in file */ | ||||
| #define PTCACHE_TYPEFLAG_COMPRESS (1 << 16) | #define PTCACHE_TYPEFLAG_COMPRESS (1 << 16) | ||||
| #define PTCACHE_TYPEFLAG_EXTRADATA (1 << 17) | #define PTCACHE_TYPEFLAG_EXTRADATA (1 << 17) | ||||
| #define PTCACHE_TYPEFLAG_ARRAYS (1 << 18) | |||||
| #define PTCACHE_TYPEFLAG_TYPEMASK 0x0000FFFF | #define PTCACHE_TYPEFLAG_TYPEMASK 0x0000FFFF | ||||
| #define PTCACHE_TYPEFLAG_FLAGMASK 0xFFFF0000 | #define PTCACHE_TYPEFLAG_FLAGMASK 0xFFFF0000 | ||||
| /* PTCache read return code */ | /* PTCache read return code */ | ||||
| #define PTCACHE_READ_EXACT 1 | #define PTCACHE_READ_EXACT 1 | ||||
| #define PTCACHE_READ_INTERPOLATED 2 | #define PTCACHE_READ_INTERPOLATED 2 | ||||
| #define PTCACHE_READ_OLD 3 | #define PTCACHE_READ_OLD 3 | ||||
| ▲ Show 20 Lines • Show All 314 Lines • Show Last 20 Lines | |||||