From fbba0cd0376994fddac6dcd686ca616982e931b4 Mon Sep 17 00:00:00 2001 From: Dennis Kobert Date: Mon, 17 Aug 2026 10:56:45 +0000 Subject: [PATCH] Gate the gpu converter imports the sweep wrongly removed --- node-graph/interpreted-executor/src/node_registry.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/node-graph/interpreted-executor/src/node_registry.rs b/node-graph/interpreted-executor/src/node_registry.rs index a897b6595c..33b9557b4b 100644 --- a/node-graph/interpreted-executor/src/node_registry.rs +++ b/node-graph/interpreted-executor/src/node_registry.rs @@ -9,6 +9,10 @@ use graphene_std::raster::color::Color; use graphene_std::raster::*; use graphene_std::raster::{CPU, Raster}; use graphene_std::registry::{ConstructionError, EdgeHandle, NodeIOTypes, RegistryEntry}; +#[cfg(feature = "gpu")] +use graphene_std::SourceId; +#[cfg(feature = "gpu")] +use graphene_std::runtime::RuntimeHandle; use graphene_std::uuid::NodeId; use graphene_std::vector::Vector; use graphene_std::{Artboard, Context, Graphic, ProtoNodeIdentifier, concrete};