Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_scene_types.h
| Show First 20 Lines • Show All 395 Lines • ▼ Show 20 Lines | typedef struct ImageFormatData { | ||||
| char imtype; | char imtype; | ||||
| /** | /** | ||||
| * bits per channel, R_IMF_CHAN_DEPTH_8 -> 32, | * bits per channel, R_IMF_CHAN_DEPTH_8 -> 32, | ||||
| * not a flag, only set 1 at a time. */ | * not a flag, only set 1 at a time. */ | ||||
| char depth; | char depth; | ||||
| /** R_IMF_PLANES_BW, R_IMF_PLANES_RGB, R_IMF_PLANES_RGBA. */ | /** R_IMF_PLANES_BW, R_IMF_PLANES_RGB, R_IMF_PLANES_RGBA. */ | ||||
| char planes; | char planes; | ||||
| /** Generic options for all image types, alpha zbuffer. */ | /** Generic options for all image types, alpha Z-buffer. */ | ||||
| char flag; | char flag; | ||||
| /** (0 - 100), eg: JPEG quality. */ | /** (0 - 100), eg: JPEG quality. */ | ||||
| char quality; | char quality; | ||||
| /** (0 - 100), eg: PNG compression. */ | /** (0 - 100), eg: PNG compression. */ | ||||
| char compress; | char compress; | ||||
| /* --- format specific --- */ | /* --- format specific --- */ | ||||
| ▲ Show 20 Lines • Show All 2,155 Lines • Show Last 20 Lines | |||||