diff --git a/node-graph/nodes/gstd/src/platform_application_io.rs b/node-graph/nodes/gstd/src/platform_application_io.rs index b78901ccc1..422417cb1e 100644 --- a/node-graph/nodes/gstd/src/platform_application_io.rs +++ b/node-graph/nodes/gstd/src/platform_application_io.rs @@ -15,7 +15,7 @@ use core_types::runtime::SourceFuture; #[cfg(target_family = "wasm")] use core_types::transform::Footprint; #[cfg(target_family = "wasm")] -use core_types::{ATTR_TRANSFORM, WasmNotSend}; +use core_types::ATTR_TRANSFORM; use core_types::{Color, Ctx}; pub use graph_craft::application_io::resource::{Resource, ResourceHash}; pub use graph_craft::application_io::*; @@ -204,17 +204,17 @@ fn create_canvas(_: impl Ctx) -> CanvasHandle { /// Renders a view of the input graphic within an area defined by the *Footprint*. #[cfg(target_family = "wasm")] #[node_macro::node(category(""))] -async fn rasterize( +async fn rasterize( _: impl Ctx, _: (), #[implementations( - List, - List>, - List, - List, - List, + Vector, + Raster, + Graphic, + Color, + GradientStops, )] - mut data: List, + mut data: IList, footprint: Footprint, mut canvas: CanvasHandle, ) -> (Raster, Attr, OwnedAttr)