Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_sequence_types.h
| Show First 20 Lines • Show All 356 Lines • ▼ Show 20 Lines | |||||
| /* TextVars.align_y */ | /* TextVars.align_y */ | ||||
| enum { | enum { | ||||
| SEQ_TEXT_ALIGN_Y_TOP = 0, | SEQ_TEXT_ALIGN_Y_TOP = 0, | ||||
| SEQ_TEXT_ALIGN_Y_CENTER = 1, | SEQ_TEXT_ALIGN_Y_CENTER = 1, | ||||
| SEQ_TEXT_ALIGN_Y_BOTTOM = 2, | SEQ_TEXT_ALIGN_Y_BOTTOM = 2, | ||||
| }; | }; | ||||
| #define SEQ_FONT_NOT_LOADED -2 | |||||
| typedef struct ColorMixVars { | typedef struct ColorMixVars { | ||||
| /** Value from SEQ_TYPE_XXX enumeration. */ | /** Value from SEQ_TYPE_XXX enumeration. */ | ||||
| int blend_effect; | int blend_effect; | ||||
| /** Blend factor [0.0f, 1.0f]. */ | /** Blend factor [0.0f, 1.0f]. */ | ||||
| float factor; | float factor; | ||||
| } ColorMixVars; | } ColorMixVars; | ||||
| /* ***************** Sequence modifiers ****************** */ | /* ***************** Sequence modifiers ****************** */ | ||||
| ▲ Show 20 Lines • Show All 322 Lines • Show Last 20 Lines | |||||