node: fixed issue with "taking" values from input tables

As opposed to simply leaving all values in the table, nodes can now "take"
values that they use to free up memory (e.g. "taking" input buffers if they're
used to produce an output buffer).

This is a fairly large change, expect regressions.
This commit is contained in:
itsmattkc
2020-04-16 23:12:05 +10:00
parent cc8699c0bc
commit 2f80be437a
30 changed files with 179 additions and 101 deletions
+1 -1
View File
@@ -72,7 +72,7 @@ NodeValueTable NodeTraverser::ProcessNode(const NodeDependency& dep)
// By this point, the node should have all the inputs it needs to render correctly
NodeValueTable table = node->Value(database);
ProcessNodeEvent(node, dep.range(), database, &table);
ProcessNodeEvent(node, dep.range(), database, table);
return table;
}