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

No functional changes are expected.
This commit is contained in:
2022-11-23 14:05:30 +01:00
parent 4f02817367
commit aa0c2c0f47
20 changed files with 114 additions and 104 deletions

View File

@@ -163,7 +163,7 @@ void ExecutionSystem::execute_work(const rcti &work_rect,
bool ExecutionSystem::is_breaked() const
{
const bNodeTree *btree = context_.get_bnodetree();
return btree->test_break(btree->tbh);
return btree->runtime->test_break(btree->runtime->tbh);
}
} // namespace blender::compositor