Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_image_types.h
| Show First 20 Lines • Show All 127 Lines • ▼ Show 20 Lines | |||||
| typedef struct Image { | typedef struct Image { | ||||
| ID id; | ID id; | ||||
| /** File path, 1024 = FILE_MAX. */ | /** File path, 1024 = FILE_MAX. */ | ||||
| char name[1024]; | char name[1024]; | ||||
| /** Not written in file. */ | /** Not written in file. */ | ||||
| struct MovieCache *cache; | struct MovieCache *cache; | ||||
| /** Not written in file 4 = TEXTARGET_COUNT. */ | /** Not written in file 4 = TEXTARGET_COUNT, 2 = stereo eyes. */ | ||||
| struct GPUTexture *gputexture[4]; | struct GPUTexture *gputexture[4][2]; | ||||
| /* sources from: */ | /* sources from: */ | ||||
| ListBase anims; | ListBase anims; | ||||
| struct RenderResult *rr; | struct RenderResult *rr; | ||||
| ListBase renderslots; | ListBase renderslots; | ||||
| short render_slot, last_render_slot; | short render_slot, last_render_slot; | ||||
| ▲ Show 20 Lines • Show All 124 Lines • Show Last 20 Lines | |||||