Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_modifier_types.h
| Show First 20 Lines • Show All 1,846 Lines • ▼ Show 20 Lines | enum { | ||||
| MOD_NORMALEDIT_MIX_SUB = 2, | MOD_NORMALEDIT_MIX_SUB = 2, | ||||
| MOD_NORMALEDIT_MIX_MUL = 3, | MOD_NORMALEDIT_MIX_MUL = 3, | ||||
| }; | }; | ||||
| typedef struct MeshSeqCacheModifierData { | typedef struct MeshSeqCacheModifierData { | ||||
| ModifierData modifier; | ModifierData modifier; | ||||
| struct CacheFile *cache_file; | struct CacheFile *cache_file; | ||||
| struct CacheReader *reader; | |||||
| /** 1024 = FILE_MAX. */ | /** 1024 = FILE_MAX. */ | ||||
| char object_path[1024]; | char object_path[1024]; | ||||
| char read_flag; | char read_flag; | ||||
| char _pad[7]; | char _pad[7]; | ||||
| /* Runtime. */ | |||||
| struct CacheReader *reader; | |||||
| char reader_object_path[1024]; | |||||
| } MeshSeqCacheModifierData; | } MeshSeqCacheModifierData; | ||||
| /* MeshSeqCacheModifierData.read_flag */ | /* MeshSeqCacheModifierData.read_flag */ | ||||
| enum { | enum { | ||||
| MOD_MESHSEQ_READ_VERT = (1 << 0), | MOD_MESHSEQ_READ_VERT = (1 << 0), | ||||
| MOD_MESHSEQ_READ_POLY = (1 << 1), | MOD_MESHSEQ_READ_POLY = (1 << 1), | ||||
| MOD_MESHSEQ_READ_UV = (1 << 2), | MOD_MESHSEQ_READ_UV = (1 << 2), | ||||
| MOD_MESHSEQ_READ_COLOR = (1 << 3), | MOD_MESHSEQ_READ_COLOR = (1 << 3), | ||||
| ▲ Show 20 Lines • Show All 78 Lines • Show Last 20 Lines | |||||