Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_scene_types.h
| Show First 20 Lines • Show All 394 Lines • ▼ Show 20 Lines | |||||
| * | * | ||||
| * note: its a bit strange that even though this is an image format struct | * note: its a bit strange that even though this is an image format struct | ||||
| * the imtype can still be used to select video formats. | * the imtype can still be used to select video formats. | ||||
| * RNA ensures these enum's are only selectable for render output. | * RNA ensures these enum's are only selectable for render output. | ||||
| */ | */ | ||||
| typedef struct ImageFormatData { | typedef struct ImageFormatData { | ||||
| /** | /** | ||||
| * R_IMF_IMTYPE_PNG, R_... | * R_IMF_IMTYPE_PNG, R_... | ||||
| * \note, video types should only ever be set from this structure when used from RenderData. | * \note Video types should only ever be set from this structure when used from #RenderData. | ||||
| */ | */ | ||||
| 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. */ | ||||
| ▲ Show 20 Lines • Show All 2,021 Lines • Show Last 20 Lines | |||||