Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_view3d_types.h
| Show First 20 Lines • Show All 208 Lines • ▼ Show 20 Lines | typedef struct View3D { | ||||
| short gridlines; | short gridlines; | ||||
| short gridsubdiv; /* Number of subdivisions in the grid between each highlighted grid line */ | short gridsubdiv; /* Number of subdivisions in the grid between each highlighted grid line */ | ||||
| char gridflag; | char gridflag; | ||||
| /* transform manipulator info */ | /* transform manipulator info */ | ||||
| char twtype, twmode, twflag; | char twtype, twmode, twflag; | ||||
| short flag3; | short flag3; | ||||
| /* Pointer to the active custom transform orientation. Storing this here so we can remove it correctly. */ | |||||
| struct TransformOrientation *custom_orientation; | |||||
| void *pad5; | |||||
| /* afterdraw, for xray & transparent */ | /* afterdraw, for xray & transparent */ | ||||
| struct ListBase afterdraw_transp; | struct ListBase afterdraw_transp; | ||||
| struct ListBase afterdraw_xray; | struct ListBase afterdraw_xray; | ||||
| struct ListBase afterdraw_xraytransp; | struct ListBase afterdraw_xraytransp; | ||||
| /* drawflags, denoting state */ | /* drawflags, denoting state */ | ||||
| char zbuf, transp, xray; | char zbuf, transp, xray; | ||||
| ▲ Show 20 Lines • Show All 205 Lines • Show Last 20 Lines | |||||