Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/space_node/node_intern.hh
| Show All 25 Lines | |||||
| struct bNode; | struct bNode; | ||||
| struct bNodeLink; | struct bNodeLink; | ||||
| struct bNodeSocket; | struct bNodeSocket; | ||||
| struct wmGizmoGroupType; | struct wmGizmoGroupType; | ||||
| struct wmKeyConfig; | struct wmKeyConfig; | ||||
| struct wmWindow; | struct wmWindow; | ||||
| /* Outside of blender namespace to avoid Python documentation build error with `ctypes`. */ | /* Outside of blender namespace to avoid Python documentation build error with `ctypes`. */ | ||||
| extern "C" { | |||||
| extern const char *node_context_dir[]; | extern const char *node_context_dir[]; | ||||
| }; | |||||
| namespace blender::ed::space_node { | namespace blender::ed::space_node { | ||||
| /** Temporary data used in node link drag modal operator. */ | /** Temporary data used in node link drag modal operator. */ | ||||
| struct bNodeLinkDrag { | struct bNodeLinkDrag { | ||||
| /** Links dragged by the operator. */ | /** Links dragged by the operator. */ | ||||
| Vector<bNodeLink *> links; | Vector<bNodeLink *> links; | ||||
| bool from_multi_input_socket; | bool from_multi_input_socket; | ||||
| ▲ Show 20 Lines • Show All 342 Lines • Show Last 20 Lines | |||||