LearnWebGPU icon indicating copy to clipboard operation
LearnWebGPU copied to clipboard

`wgpuQueueOnSubmittedWorkDone`'s signature is not matching with that is in webgpu.hpp

Open gautam1168 opened this issue 1 year ago • 2 comments

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);

gautam1168 avatar Jul 25 '23 06:07 gautam1168