Closed brendan-duncan closed 3 years ago
They get the WGpuImageCopyTexture destination object as wgpu[destination], but it's not a stored object. It should probably get it with wgpuReadGpuImageCopyTexture(destination).
wgpu[destination]
wgpuReadGpuImageCopyTexture(destination)
Good catch. Pushed a fix in above commit, though untested, as I don't currently have a test sample written up for that yet.
They get the WGpuImageCopyTexture destination object as
wgpu[destination]
, but it's not a stored object. It should probably get it withwgpuReadGpuImageCopyTexture(destination)
.