Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_node_types.h
| Show First 20 Lines • Show All 604 Lines • ▼ Show 20 Lines | |||||
| typedef enum eNodeTreeExecutionMode { | typedef enum eNodeTreeExecutionMode { | ||||
| NTREE_EXECUTION_MODE_TILED = 0, | NTREE_EXECUTION_MODE_TILED = 0, | ||||
| NTREE_EXECUTION_MODE_FULL_FRAME = 1, | NTREE_EXECUTION_MODE_FULL_FRAME = 1, | ||||
| } eNodeTreeExecutionMode; | } eNodeTreeExecutionMode; | ||||
| typedef enum eNodeTreeRuntimeFlag { | typedef enum eNodeTreeRuntimeFlag { | ||||
| /** There is a node that references an image with animation. */ | /** There is a node that references an image with animation. */ | ||||
| NTREE_RUNTIME_FLAG_HAS_IMAGE_ANIMATION = 1 << 0, | NTREE_RUNTIME_FLAG_HAS_IMAGE_ANIMATION = 1 << 0, | ||||
| /** There is a material output node in the group. */ | |||||
| NTREE_RUNTIME_FLAG_HAS_MATERIAL_OUTPUT = 1 << 1, | |||||
| } eNodeTreeRuntimeFlag; | } eNodeTreeRuntimeFlag; | ||||
| /* socket value structs for input buttons | /* socket value structs for input buttons | ||||
| * DEPRECATED now using ID properties | * DEPRECATED now using ID properties | ||||
| */ | */ | ||||
| typedef struct bNodeSocketValueInt { | typedef struct bNodeSocketValueInt { | ||||
| /** RNA subtype. */ | /** RNA subtype. */ | ||||
| ▲ Show 20 Lines • Show All 1,531 Lines • Show Last 20 Lines | |||||