Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/space_image/image_buttons.c
| Show First 20 Lines • Show All 1,120 Lines • ▼ Show 20 Lines | |||||
| #else | #else | ||||
| uiItemR(col, imfptr, "use_cineon_log", 0, NULL, ICON_NONE); | uiItemR(col, imfptr, "use_cineon_log", 0, NULL, ICON_NONE); | ||||
| uiItemR(col, imfptr, "cineon_black", 0, NULL, ICON_NONE); | uiItemR(col, imfptr, "cineon_black", 0, NULL, ICON_NONE); | ||||
| uiItemR(col, imfptr, "cineon_white", 0, NULL, ICON_NONE); | uiItemR(col, imfptr, "cineon_white", 0, NULL, ICON_NONE); | ||||
| uiItemR(col, imfptr, "cineon_gamma", 0, NULL, ICON_NONE); | uiItemR(col, imfptr, "cineon_gamma", 0, NULL, ICON_NONE); | ||||
| #endif | #endif | ||||
| } | } | ||||
| if (imf->imtype == R_IMF_IMTYPE_TIFF) { | |||||
| uiItemR(col, imfptr, "tiff_compression", 0, NULL, ICON_NONE); | |||||
| } | |||||
| /* color management */ | /* color management */ | ||||
| if (color_management && | if (color_management && | ||||
| (!BKE_imtype_requires_linear_float(imf->imtype) || | (!BKE_imtype_requires_linear_float(imf->imtype) || | ||||
| (show_preview && imf->flag & R_IMF_FLAG_PREVIEW_JPG))) | (show_preview && imf->flag & R_IMF_FLAG_PREVIEW_JPG))) | ||||
| { | { | ||||
| prop = RNA_struct_find_property(imfptr, "display_settings"); | prop = RNA_struct_find_property(imfptr, "display_settings"); | ||||
| display_settings_ptr = RNA_property_pointer_get(imfptr, prop); | display_settings_ptr = RNA_property_pointer_get(imfptr, prop); | ||||
| ▲ Show 20 Lines • Show All 191 Lines • Show Last 20 Lines | |||||