LearnWebGPU
LearnWebGPU copied to clipboard
`wgpuQueueOnSubmittedWorkDone`'s signature is not matching with that is in webgpu.hpp
Im working through the tutorial and on https://eliemichel.github.io/LearnWebGPU/getting-started/the-command-queue.html
the call to wgpuQueueOnSubmittedWorkDone takes 3 arguments. However, this does not compile and the header file specifies that there has to be a uint64_t signalValue
argument there. I can compile it if I just pass a number there but I don't know what that needs to be
wgpuQueueOnSubmittedWorkDone(queue, 0, onQueueWorkDone, nullptr);