Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_scene_types.h
| Show First 20 Lines • Show All 349 Lines • ▼ Show 20 Lines | typedef struct ImageFormatData { | ||||
| char cineon_flag; | char cineon_flag; | ||||
| short cineon_white, cineon_black; | short cineon_white, cineon_black; | ||||
| float cineon_gamma; | float cineon_gamma; | ||||
| /* Jpeg2000 */ | /* Jpeg2000 */ | ||||
| char jp2_flag; | char jp2_flag; | ||||
| char jp2_codec; | char jp2_codec; | ||||
| char pad[5]; | /* TIFF */ | ||||
| char tiff_flag; | |||||
| char pad[4]; | |||||
| /* Multiview */ | /* Multiview */ | ||||
| char views_format; | char views_format; | ||||
| Stereo3dFormat stereo3d_format; | Stereo3dFormat stereo3d_format; | ||||
| /* color management */ | /* color management */ | ||||
| ColorManagedViewSettings view_settings; | ColorManagedViewSettings view_settings; | ||||
| ColorManagedDisplaySettings display_settings; | ColorManagedDisplaySettings display_settings; | ||||
| ▲ Show 20 Lines • Show All 70 Lines • ▼ Show 20 Lines | |||||
| /* ImageFormatData.jp2_codec */ | /* ImageFormatData.jp2_codec */ | ||||
| #define R_IMF_JP2_CODEC_JP2 0 | #define R_IMF_JP2_CODEC_JP2 0 | ||||
| #define R_IMF_JP2_CODEC_J2K 1 | #define R_IMF_JP2_CODEC_J2K 1 | ||||
| /* ImageFormatData.cineon_flag */ | /* ImageFormatData.cineon_flag */ | ||||
| #define R_IMF_CINEON_FLAG_LOG (1<<0) /* was R_CINEON_LOG */ | #define R_IMF_CINEON_FLAG_LOG (1<<0) /* was R_CINEON_LOG */ | ||||
| /* ImageFormatData.tiff_flag */ | |||||
| enum { | |||||
sergey: Use anonymous enum instead. | |||||
| R_IMF_TIFF_FLAG_NONE = (1 << 0), | |||||
| R_IMF_TIFF_FLAG_DEFLATE = (1 << 1), | |||||
| R_IMF_TIFF_FLAG_LZW = (1 << 2), | |||||
| R_IMF_TIFF_FLAG_PACKBITS = (1 << 3), | |||||
| }; | |||||
| typedef struct BakeData { | typedef struct BakeData { | ||||
| struct ImageFormatData im_format; | struct ImageFormatData im_format; | ||||
| char filepath[1024]; /* FILE_MAX */ | char filepath[1024]; /* FILE_MAX */ | ||||
| short width, height; | short width, height; | ||||
| short margin, flag; | short margin, flag; | ||||
| ▲ Show 20 Lines • Show All 1,662 Lines • Show Last 20 Lines | |||||
Use anonymous enum instead.