Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_space_types.h
| Show First 20 Lines • Show All 1,399 Lines • ▼ Show 20 Lines | |||||
| } SpaceNode; | } SpaceNode; | ||||
| /* SpaceNode.flag */ | /* SpaceNode.flag */ | ||||
| typedef enum eSpaceNode_Flag { | typedef enum eSpaceNode_Flag { | ||||
| SNODE_BACKDRAW = (1 << 1), | SNODE_BACKDRAW = (1 << 1), | ||||
| SNODE_SHOW_GPENCIL = (1 << 2), | SNODE_SHOW_GPENCIL = (1 << 2), | ||||
| SNODE_USE_ALPHA = (1 << 3), | SNODE_USE_ALPHA = (1 << 3), | ||||
| SNODE_SHOW_ALPHA = (1 << 4), | SNODE_SHOW_ALPHA = (1 << 4), | ||||
| SNODE_AUTO_RENDER = (1 << 5), | |||||
| SNODE_SHOW_GRID = (1 << 6), | |||||
| SNODE_SHOW_R = (1 << 7), | SNODE_SHOW_R = (1 << 7), | ||||
| SNODE_SHOW_G = (1 << 8), | SNODE_SHOW_G = (1 << 8), | ||||
| SNODE_SHOW_B = (1 << 9), | SNODE_SHOW_B = (1 << 9), | ||||
| SNODE_AUTO_RENDER = (1 << 5), | |||||
| SNODE_FLAG_UNUSED_6 = (1 << 6), /* cleared */ | |||||
| SNODE_FLAG_UNUSED_10 = (1 << 10), /* cleared */ | SNODE_FLAG_UNUSED_10 = (1 << 10), /* cleared */ | ||||
| SNODE_FLAG_UNUSED_11 = (1 << 11), /* cleared */ | SNODE_FLAG_UNUSED_11 = (1 << 11), /* cleared */ | ||||
| SNODE_PIN = (1 << 12), | SNODE_PIN = (1 << 12), | ||||
| /** automatically offset following nodes in a chain on insertion */ | /** automatically offset following nodes in a chain on insertion */ | ||||
| SNODE_SKIP_INSOFFSET = (1 << 13), | SNODE_SKIP_INSOFFSET = (1 << 13), | ||||
| } eSpaceNode_Flag; | } eSpaceNode_Flag; | ||||
| /* SpaceNode.texfrom */ | /* SpaceNode.texfrom */ | ||||
| ▲ Show 20 Lines • Show All 306 Lines • Show Last 20 Lines | |||||