From 959c2db0bc2a303b25ec27f1557ccc8377f8139a Mon Sep 17 00:00:00 2001 From: Andreas Reich Date: Fri, 3 Jan 2025 20:09:38 +0100 Subject: [PATCH] Explicitly enable dx12 & metal features on `wgpu-info` (#6844) --- CHANGELOG.md | 1 + wgpu-info/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1b65d3ad03..bce3907a29 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/wgpu-info/Cargo.toml b/wgpu-info/Cargo.toml index 3d2103b202..7e3f54ec59 100644 --- a/wgpu-info/Cargo.toml +++ b/wgpu-info/Cargo.toml @@ -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"] }