Changeset View
Changeset View
Standalone View
Standalone View
source/blender/imbuf/intern/IMB_colormanagement_intern.h
| Show First 20 Lines • Show All 73 Lines • ▼ Show 20 Lines | typedef struct ColorManagedView { | ||||
| int index; | int index; | ||||
| char name[MAX_COLORSPACE_NAME]; | char name[MAX_COLORSPACE_NAME]; | ||||
| } ColorManagedView; | } ColorManagedView; | ||||
| typedef struct ColorManagedLook { | typedef struct ColorManagedLook { | ||||
| struct ColorManagedLook *next, *prev; | struct ColorManagedLook *next, *prev; | ||||
| int index; | int index; | ||||
| char name[MAX_COLORSPACE_NAME]; | char name[MAX_COLORSPACE_NAME]; | ||||
| char ui_name[MAX_COLORSPACE_NAME]; | |||||
| char view[MAX_COLORSPACE_NAME]; | |||||
| char process_space[MAX_COLORSPACE_NAME]; | char process_space[MAX_COLORSPACE_NAME]; | ||||
| bool is_noop; | bool is_noop; | ||||
| } ColorManagedLook; | } ColorManagedLook; | ||||
| /* ** Initialization / De-initialization ** */ | /* ** Initialization / De-initialization ** */ | ||||
| void colormanagement_init(void); | void colormanagement_init(void); | ||||
| void colormanagement_exit(void); | void colormanagement_exit(void); | ||||
| Show All 30 Lines | |||||