Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_userdef_types.h
| Show First 20 Lines • Show All 846 Lines • ▼ Show 20 Lines | typedef struct UserDef { | ||||
| short pie_animation_timeout; | short pie_animation_timeout; | ||||
| short pie_menu_confirm; | short pie_menu_confirm; | ||||
| /** Pie menu radius. */ | /** Pie menu radius. */ | ||||
| short pie_menu_radius; | short pie_menu_radius; | ||||
| /** Pie menu distance from center before a direction is set. */ | /** Pie menu distance from center before a direction is set. */ | ||||
| short pie_menu_threshold; | short pie_menu_threshold; | ||||
| short opensubdiv_compute_type; | short opensubdiv_compute_type; | ||||
| /** #eMultiSample_Type, amount of samples for Grease Pencil. */ | short _pad6; | ||||
| short gpencil_multisamples; | |||||
| char factor_display_type; | char factor_display_type; | ||||
| char viewport_aa; | char viewport_aa; | ||||
| char render_display_type; /* eUserpref_RenderDisplayType */ | char render_display_type; /* eUserpref_RenderDisplayType */ | ||||
| char filebrowser_display_type; /* eUserpref_TempSpaceDisplayType */ | char filebrowser_display_type; /* eUserpref_TempSpaceDisplayType */ | ||||
| char _pad5[4]; | char _pad5[4]; | ||||
| ▲ Show 20 Lines • Show All 357 Lines • ▼ Show 20 Lines | typedef enum eNdof_Flag { | ||||
| NDOF_PANX_INVERT_AXIS = (1 << 12), | NDOF_PANX_INVERT_AXIS = (1 << 12), | ||||
| NDOF_PANY_INVERT_AXIS = (1 << 13), | NDOF_PANY_INVERT_AXIS = (1 << 13), | ||||
| NDOF_PANZ_INVERT_AXIS = (1 << 14), | NDOF_PANZ_INVERT_AXIS = (1 << 14), | ||||
| NDOF_TURNTABLE = (1 << 15), | NDOF_TURNTABLE = (1 << 15), | ||||
| } eNdof_Flag; | } eNdof_Flag; | ||||
| #define NDOF_PIXELS_PER_SECOND 600.0f | #define NDOF_PIXELS_PER_SECOND 600.0f | ||||
| /** UserDef.ogl_multisamples and gpencil_multisamples */ | /** UserDef.ogl_multisamples */ | ||||
| typedef enum eMultiSample_Type { | typedef enum eMultiSample_Type { | ||||
| USER_MULTISAMPLE_NONE = 0, | USER_MULTISAMPLE_NONE = 0, | ||||
| USER_MULTISAMPLE_2 = 2, | USER_MULTISAMPLE_2 = 2, | ||||
| USER_MULTISAMPLE_4 = 4, | USER_MULTISAMPLE_4 = 4, | ||||
| USER_MULTISAMPLE_8 = 8, | USER_MULTISAMPLE_8 = 8, | ||||
| USER_MULTISAMPLE_16 = 16, | USER_MULTISAMPLE_16 = 16, | ||||
| } eMultiSample_Type; | } eMultiSample_Type; | ||||
| ▲ Show 20 Lines • Show All 51 Lines • Show Last 20 Lines | |||||