Changeset View
Changeset View
Standalone View
Standalone View
source/blender/compositor/intern/COM_NodeGraph.cc
| Show All 33 Lines | |||||
| #include "COM_NodeGraph.h" /* own include */ | #include "COM_NodeGraph.h" /* own include */ | ||||
| namespace blender::compositor { | namespace blender::compositor { | ||||
| /******************* | /******************* | ||||
| **** NodeGraph **** | **** NodeGraph **** | ||||
| *******************/ | *******************/ | ||||
| NodeGraph::NodeGraph() | |||||
| { | |||||
| } | |||||
| NodeGraph::~NodeGraph() | NodeGraph::~NodeGraph() | ||||
| { | { | ||||
| while (m_nodes.size()) { | while (m_nodes.size()) { | ||||
| delete m_nodes.pop_last(); | delete m_nodes.pop_last(); | ||||
| } | } | ||||
| } | } | ||||
| void NodeGraph::from_bNodeTree(const CompositorContext &context, bNodeTree *tree) | void NodeGraph::from_bNodeTree(const CompositorContext &context, bNodeTree *tree) | ||||
| ▲ Show 20 Lines • Show All 268 Lines • Show Last 20 Lines | |||||