Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesrna/intern/rna_color.c
| Show First 20 Lines • Show All 1,130 Lines • ▼ Show 20 Lines | |||||
| } | } | ||||
| static void rna_def_colormanage(BlenderRNA *brna) | static void rna_def_colormanage(BlenderRNA *brna) | ||||
| { | { | ||||
| StructRNA *srna; | StructRNA *srna; | ||||
| PropertyRNA *prop; | PropertyRNA *prop; | ||||
| static const EnumPropertyItem display_device_items[] = { | static const EnumPropertyItem display_device_items[] = { | ||||
| {0, "DEFAULT", 0, "Default", ""}, | {0, "NONE", 0, "None", ""}, | ||||
| {0, NULL, 0, NULL, NULL}, | {0, NULL, 0, NULL, NULL}, | ||||
| }; | }; | ||||
| static const EnumPropertyItem look_items[] = { | static const EnumPropertyItem look_items[] = { | ||||
| {0, "NONE", 0, "None", "Do not modify image in an artistic manner"}, | {0, "NONE", 0, "None", "Do not modify image in an artistic manner"}, | ||||
| {0, NULL, 0, NULL, NULL}, | {0, NULL, 0, NULL, NULL}, | ||||
| }; | }; | ||||
| ▲ Show 20 Lines • Show All 148 Lines • Show Last 20 Lines | |||||