Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_color_types.h
| Show First 20 Lines • Show All 93 Lines • ▼ Show 20 Lines | |||||
| typedef enum eCurveMappingPreset { | typedef enum eCurveMappingPreset { | ||||
| CURVE_PRESET_LINE = 0, | CURVE_PRESET_LINE = 0, | ||||
| CURVE_PRESET_SHARP = 1, | CURVE_PRESET_SHARP = 1, | ||||
| CURVE_PRESET_SMOOTH = 2, | CURVE_PRESET_SMOOTH = 2, | ||||
| CURVE_PRESET_MAX = 3, | CURVE_PRESET_MAX = 3, | ||||
| CURVE_PRESET_MID9 = 4, | CURVE_PRESET_MID9 = 4, | ||||
| CURVE_PRESET_ROUND = 5, | CURVE_PRESET_ROUND = 5, | ||||
| CURVE_PRESET_ROOT = 6, | CURVE_PRESET_ROOT = 6, | ||||
| CURVE_PRESET_GAUSS = 7, | |||||
| } eCurveMappingPreset; | } eCurveMappingPreset; | ||||
| /* histogram->mode */ | /* histogram->mode */ | ||||
| enum { | enum { | ||||
| HISTO_MODE_LUMA = 0, | HISTO_MODE_LUMA = 0, | ||||
| HISTO_MODE_RGB = 1, | HISTO_MODE_RGB = 1, | ||||
| HISTO_MODE_R = 2, | HISTO_MODE_R = 2, | ||||
| HISTO_MODE_G = 3, | HISTO_MODE_G = 3, | ||||
| ▲ Show 20 Lines • Show All 81 Lines • Show Last 20 Lines | |||||