Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_node_types.h
| Show All 37 Lines | |||||
| struct Image; | struct Image; | ||||
| struct ListBase; | struct ListBase; | ||||
| struct bGPdata; | struct bGPdata; | ||||
| struct bNodeInstanceHash; | struct bNodeInstanceHash; | ||||
| struct bNodeLink; | struct bNodeLink; | ||||
| struct bNodePreview; | struct bNodePreview; | ||||
| struct bNodeTreeExec; | struct bNodeTreeExec; | ||||
| struct bNodeType; | struct bNodeType; | ||||
| struct NodeTreeUIStorage; | |||||
| struct uiBlock; | struct uiBlock; | ||||
| #define NODE_MAXSTR 64 | #define NODE_MAXSTR 64 | ||||
| typedef struct bNodeStack { | typedef struct bNodeStack { | ||||
| float vec[4]; | float vec[4]; | ||||
| float min, max; | float min, max; | ||||
| void *data; | void *data; | ||||
| ▲ Show 20 Lines • Show All 442 Lines • ▼ Show 20 Lines | typedef struct bNodeTree { | ||||
| /* callbacks */ | /* callbacks */ | ||||
| void (*progress)(void *, float progress); | void (*progress)(void *, float progress); | ||||
| /** \warning may be called by different threads */ | /** \warning may be called by different threads */ | ||||
| void (*stats_draw)(void *, const char *str); | void (*stats_draw)(void *, const char *str); | ||||
| int (*test_break)(void *); | int (*test_break)(void *); | ||||
| void (*update_draw)(void *); | void (*update_draw)(void *); | ||||
| void *tbh, *prh, *sdh, *udh; | void *tbh, *prh, *sdh, *udh; | ||||
| struct NodeTreeUIStorage *ui_storage; | |||||
| } bNodeTree; | } bNodeTree; | ||||
| /* ntree->type, index */ | /* ntree->type, index */ | ||||
| #define NTREE_CUSTOM -1 /* for dynamically registered custom types */ | #define NTREE_CUSTOM -1 /* for dynamically registered custom types */ | ||||
| #define NTREE_SHADER 0 | #define NTREE_SHADER 0 | ||||
| #define NTREE_COMPOSIT 1 | #define NTREE_COMPOSIT 1 | ||||
| #define NTREE_TEXTURE 2 | #define NTREE_TEXTURE 2 | ||||
| #define NTREE_GEOMETRY 3 | #define NTREE_GEOMETRY 3 | ||||
| ▲ Show 20 Lines • Show All 1,189 Lines • Show Last 20 Lines | |||||