Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_movieclip_types.h
| Show First 20 Lines • Show All 49 Lines • ▼ Show 20 Lines | typedef struct MovieClipProxy { | ||||
| /** Time code in use. */ | /** Time code in use. */ | ||||
| short tc; | short tc; | ||||
| /** Proxy build quality. */ | /** Proxy build quality. */ | ||||
| short quality; | short quality; | ||||
| /** Size flags (see below) of all proxies to build. */ | /** Size flags (see below) of all proxies to build. */ | ||||
| short build_size_flag; | short build_size_flag; | ||||
| /** Time code flags (see below) of all tc indices to build. */ | /** Time code flags (see below) of all tc indices to build. */ | ||||
| short build_tc_flag; | short build_tc_flag; | ||||
| int flag; | |||||
| char _pad[4]; | |||||
| } MovieClipProxy; | } MovieClipProxy; | ||||
| typedef struct MovieClip_RuntimeGPUTexture { | typedef struct MovieClip_RuntimeGPUTexture { | ||||
| void *next, *prev; | void *next, *prev; | ||||
| MovieClipUser user; | MovieClipUser user; | ||||
| /** Not written in file 2 = TEXTARGET_COUNT. */ | /** Not written in file 2 = TEXTARGET_COUNT. */ | ||||
| struct GPUTexture *gputexture[2]; | struct GPUTexture *gputexture[2]; | ||||
| } MovieClip_RuntimeGPUTexture; | } MovieClip_RuntimeGPUTexture; | ||||
| ▲ Show 20 Lines • Show All 145 Lines • Show Last 20 Lines | |||||