Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/include/ED_node.h
| Show First 20 Lines • Show All 83 Lines • ▼ Show 20 Lines | void ED_node_socket_draw(struct bNodeSocket *sock, | ||||
| float scale); | float scale); | ||||
| void ED_node_tree_update(const struct bContext *C); | void ED_node_tree_update(const struct bContext *C); | ||||
| void ED_node_tag_update_id(struct ID *id); | void ED_node_tag_update_id(struct ID *id); | ||||
| float ED_node_grid_size(void); | float ED_node_grid_size(void); | ||||
| /* node_relationships.cc */ | /* node_relationships.cc */ | ||||
| /** | void ED_node_link_attach_highlight(struct ScrArea *area); | ||||
| * Test == 0, clear all intersect flags. | void ED_node_link_attach_highlight_clear(struct ScrArea *area); | ||||
| */ | void ED_node_link_attach_highlighted(struct Main *bmain, struct ScrArea *area); | ||||
| void ED_node_link_intersect_test(struct ScrArea *area, int test); | |||||
| /** | |||||
| * Assumes link with #NODE_LINKFLAG_HILITE set. | |||||
| */ | |||||
| void ED_node_link_insert(struct Main *bmain, struct ScrArea *area); | |||||
| /* node_edit.cc */ | /* node_edit.cc */ | ||||
| void ED_node_set_tree_type(struct SpaceNode *snode, struct bNodeTreeType *typeinfo); | void ED_node_set_tree_type(struct SpaceNode *snode, struct bNodeTreeType *typeinfo); | ||||
| bool ED_node_is_compositor(struct SpaceNode *snode); | bool ED_node_is_compositor(struct SpaceNode *snode); | ||||
| bool ED_node_is_shader(struct SpaceNode *snode); | bool ED_node_is_shader(struct SpaceNode *snode); | ||||
| bool ED_node_is_texture(struct SpaceNode *snode); | bool ED_node_is_texture(struct SpaceNode *snode); | ||||
| bool ED_node_is_geometry(struct SpaceNode *snode); | bool ED_node_is_geometry(struct SpaceNode *snode); | ||||
| ▲ Show 20 Lines • Show All 81 Lines • Show Last 20 Lines | |||||