Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_object_force_types.h
| Show First 20 Lines • Show All 486 Lines • ▼ Show 20 Lines | |||||
| #define PTCACHE_DISK_CACHE (1 << 6) | #define PTCACHE_DISK_CACHE (1 << 6) | ||||
| ///* removed since 2.64 - [#30974], could be added back in a more useful way */ | ///* removed since 2.64 - [#30974], could be added back in a more useful way */ | ||||
| //#define PTCACHE_QUICK_CACHE (1 << 7) | //#define PTCACHE_QUICK_CACHE (1 << 7) | ||||
| #define PTCACHE_FRAMES_SKIPPED (1 << 8) | #define PTCACHE_FRAMES_SKIPPED (1 << 8) | ||||
| #define PTCACHE_EXTERNAL (1 << 9) | #define PTCACHE_EXTERNAL (1 << 9) | ||||
| #define PTCACHE_READ_INFO (1 << 10) | #define PTCACHE_READ_INFO (1 << 10) | ||||
| /** don't use the filename of the blendfile the data is linked from (write a local cache) */ | /** don't use the filename of the blendfile the data is linked from (write a local cache) */ | ||||
| #define PTCACHE_IGNORE_LIBPATH (1 << 11) | #define PTCACHE_IGNORE_LIBPATH (1 << 11) | ||||
| /** high resolution cache is saved for smoke for backwards compatibility, | /** | ||||
| * so set this flag to know it's a "fake" cache */ | * High resolution cache is saved for smoke for backwards compatibility, | ||||
| * so set this flag to know it's a "fake" cache. | |||||
| */ | |||||
| #define PTCACHE_FAKE_SMOKE (1 << 12) | #define PTCACHE_FAKE_SMOKE (1 << 12) | ||||
| #define PTCACHE_IGNORE_CLEAR (1 << 13) | #define PTCACHE_IGNORE_CLEAR (1 << 13) | ||||
| #define PTCACHE_FLAG_INFO_DIRTY (1 << 14) | #define PTCACHE_FLAG_INFO_DIRTY (1 << 14) | ||||
| /* PTCACHE_OUTDATED + PTCACHE_FRAMES_SKIPPED */ | /* PTCACHE_OUTDATED + PTCACHE_FRAMES_SKIPPED */ | ||||
| #define PTCACHE_REDO_NEEDED 258 | #define PTCACHE_REDO_NEEDED 258 | ||||
| Show All 38 Lines | |||||