@@ -350,7 +350,7 @@ fn node_registry() -> HashMap<ProtoNodeIdentifier, HashMap<NodeIOTypes, NodeCons
350
350
async_node!( graphene_core:: memo:: MonitorNode <_, _, _>, input: Footprint , output: Artboard , fn_params: [ Footprint => Artboard ] ) ,
351
351
async_node!( graphene_std:: wasm_application_io:: LoadResourceNode <_>, input: & WasmEditorApi , output: Arc <[ u8 ] >, params: [ String ] ) ,
352
352
register_node!( graphene_std:: wasm_application_io:: DecodeImageNode , input: Arc <[ u8 ] >, params: [ ] ) ,
353
- async_node!( graphene_std:: wasm_application_io:: CreateSurfaceNode , input: & WasmEditorApi , output: WasmSurfaceHandle , params: [ ] ) ,
353
+ async_node!( graphene_std:: wasm_application_io:: CreateSurfaceNode , input: & WasmEditorApi , output: Arc < WasmSurfaceHandle > , params: [ ] ) ,
354
354
#[ cfg( target_arch = "wasm32" ) ]
355
355
async_node!(
356
356
graphene_std:: wasm_application_io:: DrawImageFrameNode <_>,
@@ -615,7 +615,7 @@ fn node_registry() -> HashMap<ProtoNodeIdentifier, HashMap<NodeIOTypes, NodeCons
615
615
async_node!( graphene_core:: memo:: MemoNode <_, _>, input: ( ) , output: ShaderInputFrame , params: [ ShaderInputFrame ] ) ,
616
616
#[ cfg( feature = "gpu" ) ]
617
617
async_node!( graphene_core:: memo:: MemoNode <_, _>, input: ( ) , output: wgpu_executor:: WgpuSurface , params: [ wgpu_executor:: WgpuSurface ] ) ,
618
- // async_node!(graphene_core::memo::MemoNode<_, _>, input: (), output: wgpu_executor::Surface , params: [wgpu_executor::Surface ]),
618
+ async_node!( graphene_core:: memo:: MemoNode <_, _>, input: ( ) , output: wgpu_executor:: WindowHandle , params: [ wgpu_executor:: WindowHandle ] ) ,
619
619
async_node!( graphene_core:: memo:: MemoNode <_, _>, input: ( ) , output: SurfaceFrame , params: [ SurfaceFrame ] ) ,
620
620
async_node!( graphene_core:: memo:: MemoNode <_, _>, input: ( ) , output: RenderOutput , params: [ RenderOutput ] ) ,
621
621
async_node!( graphene_core:: memo:: ImpureMemoNode <_, _, _>, input: Footprint , output: GraphicGroup , fn_params: [ Footprint => GraphicGroup ] ) ,
0 commit comments