Cleanup: move some data from bNodeSocket to run-time data

No functional changes are expected.
This commit is contained in:
2022-11-23 10:42:03 +01:00
parent 5938e97a24
commit 356373ff7a
10 changed files with 53 additions and 51 deletions

View File

@@ -23,7 +23,7 @@ bool cmp_node_poll_default(bNodeType * /*ntype*/, bNodeTree *ntree, const char *
void cmp_node_update_default(bNodeTree * /*ntree*/, bNode *node)
{
LISTBASE_FOREACH (bNodeSocket *, sock, &node->outputs) {
if (sock->cache) {
if (sock->runtime->cache) {
// free_compbuf(sock->cache);
// sock->cache = nullptr;
}