Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_node_types.h
| Show First 20 Lines • Show All 1,053 Lines • ▼ Show 20 Lines | typedef struct NodeCryptomatte { | ||||
| char _pad[4]; | char _pad[4]; | ||||
| } NodeCryptomatte; | } NodeCryptomatte; | ||||
| typedef struct NodeDenoise { | typedef struct NodeDenoise { | ||||
| char hdr; | char hdr; | ||||
| char _pad[7]; | char _pad[7]; | ||||
| } NodeDenoise; | } NodeDenoise; | ||||
| typedef struct NodeAttributeMix { | |||||
| /* e.g. MA_RAMP_BLEND. */ | |||||
| uint8_t blend_type; | |||||
| /* GeometryNodeAttributeInputMode */ | |||||
| uint8_t input_type_factor; | |||||
| uint8_t input_type_a; | |||||
| uint8_t input_type_b; | |||||
| } NodeAttributeMix; | |||||
| /* script node mode */ | /* script node mode */ | ||||
| #define NODE_SCRIPT_INTERNAL 0 | #define NODE_SCRIPT_INTERNAL 0 | ||||
| #define NODE_SCRIPT_EXTERNAL 1 | #define NODE_SCRIPT_EXTERNAL 1 | ||||
| /* script node flag */ | /* script node flag */ | ||||
| #define NODE_SCRIPT_AUTO_UPDATE 1 | #define NODE_SCRIPT_AUTO_UPDATE 1 | ||||
| /* ies node mode */ | /* ies node mode */ | ||||
| ▲ Show 20 Lines • Show All 407 Lines • Show Last 20 Lines | |||||