v0.19.1
This release includes wgpu
and wgpu-hal
. The rest of the crates are unchanged since 0.19.0.
Bug Fixes
DX12
- Properly register all swapchain buffers to prevent error on surface present. By @dtzxporter in #5091
- Check for extra null states when creating resources. By @nical in #5096
- Fix depth-only and stencil-only views causing crashes. By @teoxoy in #5100
OpenGL
- In Surface::configure and Surface::present on Windows, fix the current GL context not being unset when releasing the lock that guards access to making the context current. This was causing other threads to panic when trying to make the context current. By @Imberflur in #5087.
WebGPU
- Improve error message when compiling WebGPU backend on wasm without the
web_sys_unstable_apis
set. By @rukai in #5104