some render cache adjustments

This commit is contained in:
itsmattkc
2019-09-04 10:58:50 +10:00
parent 12bc5839a6
commit 371d0e2b37
22 changed files with 150 additions and 48 deletions
+9
View File
@@ -91,3 +91,12 @@ bool NodeGraph::ContainsNode(Node *n)
{
return (n->parent() == this);
}
void NodeGraph::Release()
{
QList<Node*> all_nodes = nodes();
foreach (Node* n, all_nodes) {
n->Release();
}
}