Adam Dusty

Results 3 comments of Adam Dusty

If you want to call a method in the host, wrap it in a Task.Run() call. ```C# await Task.Run(plugin.Start); ``` If you want to call a method from the host...

Any further direction on how this would be done? I'd be willing to work on it. I've been working with veldrid for a few months and have some experience with...

Emscripten requires wgpuCreateInstance takes a nullptr for the instance descriptor pointer. https://github.com/emscripten-core/emscripten/blob/main/system/lib/webgpu/webgpu.cpp#L23-L26 You can either ```cpp wgpuCreateInstance(nullptr); // or auto instance = reinterpret_cast(1); ```