From de17b576f47e410845ba36fc06a204b08a624893 Mon Sep 17 00:00:00 2001 From: Dennis Kobert Date: Mon, 24 Nov 2025 15:56:04 +0100 Subject: [PATCH] Add missing implementation for context modification node --- node-graph/interpreted-executor/src/node_registry.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/node-graph/interpreted-executor/src/node_registry.rs b/node-graph/interpreted-executor/src/node_registry.rs index 6cc5a49d9f..af40b2dfc6 100644 --- a/node-graph/interpreted-executor/src/node_registry.rs +++ b/node-graph/interpreted-executor/src/node_registry.rs @@ -153,6 +153,8 @@ fn node_registry() -> HashMap, input: Context, fn_params: [Context => &WasmEditorApi, Context => graphene_std::ContextFeatures]), #[cfg(feature = "gpu")] + async_node!(graphene_core::context_modification::ContextModificationNode<_, _>, input: Context, fn_params: [Context => &WgpuExecutor, Context => graphene_std::ContextFeatures]), + #[cfg(feature = "gpu")] async_node!(graphene_core::context_modification::ContextModificationNode<_, _>, input: Context, fn_params: [Context => Arc, Context => graphene_std::ContextFeatures]), async_node!(graphene_core::context_modification::ContextModificationNode<_, _>, input: Context, fn_params: [Context => RenderIntermediate, Context => graphene_std::ContextFeatures]), async_node!(graphene_core::context_modification::ContextModificationNode<_, _>, input: Context, fn_params: [Context => WgpuSurface, Context => graphene_std::ContextFeatures]),