Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_userdef_types.h
| Show First 20 Lines • Show All 509 Lines • ▼ Show 20 Lines | typedef struct UserDef { | ||||
| short pad1; | short pad1; | ||||
| int undomemory; | int undomemory; | ||||
| int pad3; | int pad3; | ||||
| short gp_manhattendist, gp_euclideandist, gp_eraser; | short gp_manhattendist, gp_euclideandist, gp_eraser; | ||||
| short gp_settings; /* eGP_UserdefSettings */ | short gp_settings; /* eGP_UserdefSettings */ | ||||
| short tb_leftmouse, tb_rightmouse; | short tb_leftmouse, tb_rightmouse; | ||||
| struct SolidLight light[3]; | struct SolidLight light[3]; | ||||
| short manipulator_flag, manipulator_size; | short manipulator_flag, manipulator_size; | ||||
| int pad6; | short pad6[3]; | ||||
| short textimeout, texcollectrate; | short textimeout, texcollectrate; | ||||
| short wmdrawmethod; /* eWM_DrawMethod */ | |||||
| short dragthreshold; | short dragthreshold; | ||||
| int memcachelimit; | int memcachelimit; | ||||
| int prefetchframes; | int prefetchframes; | ||||
| float pad_rot_angle; /* control the rotation step of the view when PAD2, PAD4, PAD6&PAD8 is use */ | float pad_rot_angle; /* control the rotation step of the view when PAD2, PAD4, PAD6&PAD8 is use */ | ||||
| short frameserverport; | short frameserverport; | ||||
| short obcenter_dia; | short obcenter_dia; | ||||
| short rvisize; /* rotating view icon size */ | short rvisize; /* rotating view icon size */ | ||||
| short rvibright; /* rotating view icon brightness */ | short rvibright; /* rotating view icon brightness */ | ||||
| ▲ Show 20 Lines • Show All 263 Lines • ▼ Show 20 Lines | |||||
| /* selection method for opengl gpu_select_method */ | /* selection method for opengl gpu_select_method */ | ||||
| typedef enum eOpenGL_SelectOptions { | typedef enum eOpenGL_SelectOptions { | ||||
| USER_SELECT_AUTO = 0, | USER_SELECT_AUTO = 0, | ||||
| USER_SELECT_USE_OCCLUSION_QUERY = 1, | USER_SELECT_USE_OCCLUSION_QUERY = 1, | ||||
| USER_SELECT_USE_SELECT_RENDERMODE = 2 | USER_SELECT_USE_SELECT_RENDERMODE = 2 | ||||
| } eOpenGL_SelectOptions; | } eOpenGL_SelectOptions; | ||||
| /* wm draw method. | |||||
| * UserDef.wmdrawmethod */ | |||||
| typedef enum eWM_DrawMethod { | |||||
| USER_DRAW_TRIPLE = 0, | |||||
| USER_DRAW_OVERLAP = 1, | |||||
| USER_DRAW_FULL = 2, | |||||
| USER_DRAW_AUTOMATIC = 3, | |||||
| USER_DRAW_OVERLAP_FLIP = 4, | |||||
| } eWM_DrawMethod; | |||||
| /* text draw options | /* text draw options | ||||
| * UserDef.text_render */ | * UserDef.text_render */ | ||||
| typedef enum eText_Draw_Options { | typedef enum eText_Draw_Options { | ||||
| USER_TEXT_DISABLE_AA = (1 << 0), | USER_TEXT_DISABLE_AA = (1 << 0), | ||||
| } eText_Draw_Options; | } eText_Draw_Options; | ||||
| /* tw_flag (transform widget) */ | /* tw_flag (transform widget) */ | ||||
| ▲ Show 20 Lines • Show All 130 Lines • Show Last 20 Lines | |||||