From 2424d0830a83f8684319323ade7fb3fd535a3fbf Mon Sep 17 00:00:00 2001 From: Dennis Kobert Date: Tue, 23 Sep 2025 10:27:03 +0200 Subject: [PATCH] Add implementations to node registry --- node-graph/interpreted-executor/src/node_registry.rs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/node-graph/interpreted-executor/src/node_registry.rs b/node-graph/interpreted-executor/src/node_registry.rs index 3a44bf264b..6cc5a49d9f 100644 --- a/node-graph/interpreted-executor/src/node_registry.rs +++ b/node-graph/interpreted-executor/src/node_registry.rs @@ -71,6 +71,12 @@ fn node_registry() -> HashMap>, to: Table>, converter: &WgpuExecutor), #[cfg(feature = "gpu")] convert_node!(from: Table, to: Table>, converter: &WgpuExecutor), + #[cfg(feature = "gpu")] + convert_node!(from: Table, to: Table>, converter: &WgpuExecutor), + #[cfg(feature = "gpu")] + convert_node!(from: Table, to: Table>, converter: &WgpuExecutor), + #[cfg(feature = "gpu")] + convert_node!(from: Table, to: Table>, converter: &WgpuExecutor), // ============= // MONITOR NODES // =============