Decouple node graph execution (#1209)

* Decouple node graph execution from the main loop

* Trigger document Render + Layer updates after the graph evaluation
This commit is contained in:
Dennis Kobert
2023-05-25 10:36:56 +02:00
committed by GitHub
parent 38b4050d9e
commit a08d8e4537
14 changed files with 510 additions and 337 deletions
+4
View File
@@ -23,6 +23,10 @@ impl Editor {
responses
}
pub fn poll_node_graph_evaluation(&mut self, responses: &mut VecDeque<Message>) {
self.dispatcher.poll_node_graph_evaluation(responses);
}
}
impl Default for Editor {