Explicitly enable dx12 & metal features on wgpu-info (#6844)

This commit is contained in:
Andreas Reich 2025-01-03 20:09:38 +01:00 committed by GitHub
parent 111a6a8ed1
commit 959c2db0bc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View File

@ -194,6 +194,7 @@ By @ErichDonGubler in [#6456](https://github.com/gfx-rs/wgpu/pull/6456), [#6148]
- Fix panic when dropping `Device` on some environments. By @Dinnerbone in [#6681](https://github.com/gfx-rs/wgpu/pull/6681).
- Reduced the overhead of command buffer validation. By @nical in [#6721](https://github.com/gfx-rs/wgpu/pull/6721).
- Set index type to NONE in `get_acceleration_structure_build_sizes`. By @Vecvec in [#6802](https://github.com/gfx-rs/wgpu/pull/6802).
- Fix `wgpu-info` not showing dx12 adapters. By @wumpf in [#6844](https://github.com/gfx-rs/wgpu/pull/6844).
#### Naga

View File

@ -16,4 +16,4 @@ env_logger.workspace = true
pico-args.workspace = true
serde.workspace = true
serde_json.workspace = true
wgpu = { workspace = true, features = ["serde", "static-dxc"] }
wgpu = { workspace = true, features = ["serde", "dx12", "metal", "static-dxc"] }