Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_userdef_types.h
| Show First 20 Lines • Show All 861 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 | ||||
| /* compute_device_type */ | |||||
| typedef enum eCompute_Device_Type { | |||||
| USER_COMPUTE_DEVICE_NONE = 0, | |||||
| USER_COMPUTE_DEVICE_OPENCL = 1, | |||||
| USER_COMPUTE_DEVICE_CUDA = 2, | |||||
| } eCompute_Device_Type; | |||||
| 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 All 27 Lines | |||||