Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_userdef_types.h
| Show First 20 Lines • Show All 808 Lines • ▼ Show 20 Lines | typedef struct UserDef { | ||||
| short opensubdiv_compute_type; | short opensubdiv_compute_type; | ||||
| /** #eMultiSample_Type, amount of samples for Grease Pencil. */ | /** #eMultiSample_Type, amount of samples for Grease Pencil. */ | ||||
| short gpencil_multisamples; | short gpencil_multisamples; | ||||
| char factor_display_type; | char factor_display_type; | ||||
| char viewport_aa; | char viewport_aa; | ||||
| char _pad5[6]; | char render_display_type; /* eUserpref_RenderDisplayType */ | ||||
| char filebrowser_display_type; /* eUserpref_TempSpaceDisplayType */ | |||||
| char _pad5[4]; | |||||
| struct WalkNavigation walk_navigation; | struct WalkNavigation walk_navigation; | ||||
| /** The UI for the user preferences. */ | /** The UI for the user preferences. */ | ||||
| UserDef_SpaceData space_data; | UserDef_SpaceData space_data; | ||||
| /** Runtime data (keep last). */ | /** Runtime data (keep last). */ | ||||
| UserDef_Runtime runtime; | UserDef_Runtime runtime; | ||||
| ▲ Show 20 Lines • Show All 371 Lines • ▼ Show 20 Lines | |||||
| } eOpensubdiv_Computee_Type; | } eOpensubdiv_Computee_Type; | ||||
| /** #UserDef.factor_display_type */ | /** #UserDef.factor_display_type */ | ||||
| typedef enum eUserpref_FactorDisplay { | typedef enum eUserpref_FactorDisplay { | ||||
| USER_FACTOR_AS_FACTOR = 0, | USER_FACTOR_AS_FACTOR = 0, | ||||
| USER_FACTOR_AS_PERCENTAGE = 1, | USER_FACTOR_AS_PERCENTAGE = 1, | ||||
| } eUserpref_FactorDisplay; | } eUserpref_FactorDisplay; | ||||
| typedef enum eUserpref_RenderDisplayType { | |||||
| USER_RENDER_DISPLAY_NONE = 0, | |||||
| USER_RENDER_DISPLAY_SCREEN = 1, | |||||
| USER_RENDER_DISPLAY_AREA = 2, | |||||
| USER_RENDER_DISPLAY_WINDOW = 3 | |||||
| } eUserpref_RenderDisplayType; | |||||
| typedef enum eUserpref_TempSpaceDisplayType { | |||||
| USER_TEMP_SPACE_DISPLAY_FULLSCREEN, | |||||
| USER_TEMP_SPACE_DISPLAY_WINDOW, | |||||
| } eUserpref_TempSpaceDisplayType; | |||||
| #ifdef __cplusplus | #ifdef __cplusplus | ||||
| } | } | ||||
| #endif | #endif | ||||
| #endif | #endif | ||||