Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_view3d_types.h
| Show First 20 Lines • Show All 69 Lines • ▼ Show 20 Lines | typedef struct RegionView3D { | ||||
| * means we can test for clipping in editmode without first going into worldspace. */ | * means we can test for clipping in editmode without first going into worldspace. */ | ||||
| float clip_local[6][4]; | float clip_local[6][4]; | ||||
| struct BoundBox *clipbb; | struct BoundBox *clipbb; | ||||
| /** Allocated backup of its self while in localview. */ | /** Allocated backup of its self while in localview. */ | ||||
| struct RegionView3D *localvd; | struct RegionView3D *localvd; | ||||
| struct RenderEngine *render_engine; | struct RenderEngine *render_engine; | ||||
| struct ViewDepths *depths; | struct ViewDepths *depths; | ||||
| void *gpuoffscreen; | |||||
| /** Animated smooth view. */ | /** Animated smooth view. */ | ||||
| struct SmoothView3DStore *sms; | struct SmoothView3DStore *sms; | ||||
| struct wmTimer *smooth_timer; | struct wmTimer *smooth_timer; | ||||
| /** Transform gizmo matrix. */ | /** Transform gizmo matrix. */ | ||||
| float twmat[4][4]; | float twmat[4][4]; | ||||
| ▲ Show 20 Lines • Show All 477 Lines • Show Last 20 Lines | |||||