Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_sequence_types.h
| Show First 20 Lines • Show All 155 Lines • ▼ Show 20 Lines | typedef struct Sequence { | ||||
| * Frames after the first frame where display starts, | * Frames after the first frame where display starts, | ||||
| * frames before the last frame where display ends. | * frames before the last frame where display ends. | ||||
| */ | */ | ||||
| int startofs, endofs; | int startofs, endofs; | ||||
| /** | /** | ||||
| * Frames that use the first frame before data begins, | * Frames that use the first frame before data begins, | ||||
| * frames that use the last frame after data ends. | * frames that use the last frame after data ends. | ||||
| */ | */ | ||||
| int startstill, endstill; | int startstill DNA_DEPRECATED, endstill DNA_DEPRECATED; | ||||
| /** Machine: the strip channel */ | /** Machine: the strip channel */ | ||||
| int machine; | int machine; | ||||
| int _pad3; | int _pad3; | ||||
| /** Starting and ending points of the strip in the sequence. */ | /** Starting and ending points of the strip in the sequence. */ | ||||
| int startdisp, enddisp; | int startdisp, enddisp; | ||||
| float sat; | float sat; | ||||
| float mul; | float mul; | ||||
| float _pad; | float _pad; | ||||
| ▲ Show 20 Lines • Show All 631 Lines • Show Last 20 Lines | |||||