Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_sequence_types.h
| Show First 20 Lines • Show All 239 Lines • ▼ Show 20 Lines | typedef struct Sequence { | ||||
| struct IDProperty *prop; | struct IDProperty *prop; | ||||
| /* modifiers */ | /* modifiers */ | ||||
| ListBase modifiers; | ListBase modifiers; | ||||
| int cache_flag; | int cache_flag; | ||||
| int _pad2[3]; | int _pad2[3]; | ||||
| /* Playback rate of strip content in frames per second. */ | |||||
| float playback_rate; | |||||
| float _pad3; | |||||
| SequenceRuntime runtime; | SequenceRuntime runtime; | ||||
| } Sequence; | } Sequence; | ||||
| typedef struct MetaStack { | typedef struct MetaStack { | ||||
| struct MetaStack *next, *prev; | struct MetaStack *next, *prev; | ||||
| ListBase *oldbasep; | ListBase *oldbasep; | ||||
| Sequence *parseq; | Sequence *parseq; | ||||
| /* the startdisp/enddisp when entering the meta */ | /* the startdisp/enddisp when entering the meta */ | ||||
| ▲ Show 20 Lines • Show All 450 Lines • Show Last 20 Lines | |||||