Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_image_types.h
| Show First 20 Lines • Show All 157 Lines • ▼ Show 20 Lines | typedef struct Image { | ||||
| int lastframe; | int lastframe; | ||||
| /* GPU texture flag. */ | /* GPU texture flag. */ | ||||
| int gpuframenr; | int gpuframenr; | ||||
| short gpuflag; | short gpuflag; | ||||
| short gpu_pass; | short gpu_pass; | ||||
| short gpu_layer; | short gpu_layer; | ||||
| short gpu_view; | short gpu_view; | ||||
| char _pad2[4]; | |||||
| /* Number of iterations to perform to extract a mask for uv seam fixing. */ | |||||
| // TODO: unit in 1/256 of the resolution each iteration performs a dilate. This should be changed | |||||
| // in the final implementation to actual pixels or something else. This need more thought. | |||||
| short seamfix_iter; | |||||
| char _pad2[2]; | |||||
| /** Deprecated. */ | /** Deprecated. */ | ||||
| struct PackedFile *packedfile DNA_DEPRECATED; | struct PackedFile *packedfile DNA_DEPRECATED; | ||||
| struct ListBase packedfiles; | struct ListBase packedfiles; | ||||
| struct PreviewImage *preview; | struct PreviewImage *preview; | ||||
| int lastused; | int lastused; | ||||
| ▲ Show 20 Lines • Show All 111 Lines • Show Last 20 Lines | |||||