Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_view3d_types.h
| Show First 20 Lines • Show All 361 Lines • ▼ Show 20 Lines | |||||
| #define V3D_S3D_DISPCAMERAS (1 << 0) | #define V3D_S3D_DISPCAMERAS (1 << 0) | ||||
| #define V3D_S3D_DISPPLANE (1 << 1) | #define V3D_S3D_DISPPLANE (1 << 1) | ||||
| #define V3D_S3D_DISPVOLUME (1 << 2) | #define V3D_S3D_DISPVOLUME (1 << 2) | ||||
| /** #View3D.flag */ | /** #View3D.flag */ | ||||
| #define V3D_LOCAL_COLLECTIONS (1 << 0) | #define V3D_LOCAL_COLLECTIONS (1 << 0) | ||||
| #define V3D_FLAG_UNUSED_1 (1 << 1) /* cleared */ | #define V3D_FLAG_UNUSED_1 (1 << 1) /* cleared */ | ||||
| #define V3D_HIDE_HELPLINES (1 << 2) | #define V3D_HIDE_HELPLINES (1 << 2) | ||||
| #define V3D_INVALID_BACKBUF (1 << 3) | #define V3D_FLAG_UNUSED_2 (1 << 3) /* cleared */ | ||||
| #define V3D_XR_SESSION_MIRROR (1 << 4) | #define V3D_XR_SESSION_MIRROR (1 << 4) | ||||
| #define V3D_FLAG_UNUSED_10 (1 << 10) /* cleared */ | #define V3D_FLAG_UNUSED_10 (1 << 10) /* cleared */ | ||||
| #define V3D_SELECT_OUTLINE (1 << 11) | #define V3D_SELECT_OUTLINE (1 << 11) | ||||
| #define V3D_FLAG_UNUSED_12 (1 << 12) /* cleared */ | #define V3D_FLAG_UNUSED_12 (1 << 12) /* cleared */ | ||||
| #define V3D_GLOBAL_STATS (1 << 13) | #define V3D_GLOBAL_STATS (1 << 13) | ||||
| #define V3D_DRAW_CENTERS (1 << 15) | #define V3D_DRAW_CENTERS (1 << 15) | ||||
| /** #View3D_Runtime.flag */ | /** #View3D_Runtime.flag */ | ||||
| enum { | enum { | ||||
| /** The 3D view which the XR session was created in is flagged with this. */ | /** The 3D view which the XR session was created in is flagged with this. */ | ||||
| V3D_RUNTIME_XR_SESSION_ROOT = (1 << 0), | V3D_RUNTIME_XR_SESSION_ROOT = (1 << 0), | ||||
| /** Some operators override the depth buffer for dedicated occlusion operations. */ | |||||
| V3D_RUNTIME_DEPTHBUF_OVERRIDDEN = (1 << 1), | |||||
| }; | }; | ||||
| /** #RegionView3D.persp */ | /** #RegionView3D.persp */ | ||||
| #define RV3D_ORTHO 0 | #define RV3D_ORTHO 0 | ||||
| #define RV3D_PERSP 1 | #define RV3D_PERSP 1 | ||||
| #define RV3D_CAMOB 2 | #define RV3D_CAMOB 2 | ||||
| /** #RegionView3D.rflag */ | /** #RegionView3D.rflag */ | ||||
| ▲ Show 20 Lines • Show All 256 Lines • Show Last 20 Lines | |||||