Changeset View
Changeset View
Standalone View
Standalone View
source/blender/imbuf/intern/IMB_colormanagement_intern.h
| Show All 27 Lines | typedef struct ColorSpace { | ||||
| struct ColorSpace *next, *prev; | struct ColorSpace *next, *prev; | ||||
| int index; | int index; | ||||
| char name[MAX_COLORSPACE_NAME]; | char name[MAX_COLORSPACE_NAME]; | ||||
| char description[MAX_COLORSPACE_DESCRIPTION]; | char description[MAX_COLORSPACE_DESCRIPTION]; | ||||
| struct OCIO_ConstCPUProcessorRcPtr *to_scene_linear; | struct OCIO_ConstCPUProcessorRcPtr *to_scene_linear; | ||||
| struct OCIO_ConstCPUProcessorRcPtr *from_scene_linear; | struct OCIO_ConstCPUProcessorRcPtr *from_scene_linear; | ||||
| char (*aliases)[MAX_COLORSPACE_NAME]; | |||||
| int num_aliases; | |||||
| bool is_invertible; | bool is_invertible; | ||||
| bool is_data; | bool is_data; | ||||
| /* Additional info computed only when needed since it's not cheap. */ | /* Additional info computed only when needed since it's not cheap. */ | ||||
| struct { | struct { | ||||
| bool cached; | bool cached; | ||||
| bool is_srgb; | bool is_srgb; | ||||
| bool is_scene_linear; | bool is_scene_linear; | ||||
| ▲ Show 20 Lines • Show All 72 Lines • Show Last 20 Lines | |||||