Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_space_types.h
| Show First 20 Lines • Show All 1,514 Lines • ▼ Show 20 Lines | |||||
| typedef struct SpaceNodeOverlay { | typedef struct SpaceNodeOverlay { | ||||
| int flag; | int flag; | ||||
| } SpaceNodeOverlay; | } SpaceNodeOverlay; | ||||
| typedef enum eSpaceNodeOverlay_Flag { | typedef enum eSpaceNodeOverlay_Flag { | ||||
| SN_OVERLAY_SHOW_OVERLAYS = (1 << 1), | SN_OVERLAY_SHOW_OVERLAYS = (1 << 1), | ||||
| SN_OVERLAY_SHOW_WIRE_COLORS = (1 << 2), | SN_OVERLAY_SHOW_WIRE_COLORS = (1 << 2), | ||||
| SN_OVERLAY_SHOW_TIMINGS = (1 << 3), | |||||
| } eSpaceNodeOverlay_Flag; | } eSpaceNodeOverlay_Flag; | ||||
| typedef struct SpaceNode { | typedef struct SpaceNode { | ||||
| SpaceLink *next, *prev; | SpaceLink *next, *prev; | ||||
| /** Storage of regions for inactive spaces. */ | /** Storage of regions for inactive spaces. */ | ||||
| ListBase regionbase; | ListBase regionbase; | ||||
| char spacetype; | char spacetype; | ||||
| char link_flag; | char link_flag; | ||||
| ▲ Show 20 Lines • Show All 546 Lines • Show Last 20 Lines | |||||