mirror of
https://github.com/gfx-rs/wgpu.git
synced 2025-04-16 05:56:37 +00:00
Remove stale references to d3d12
bindings wrapper crate (#6675)
While looking through some recent activity for the D3D12 crate, in particular a spelling fix for the crates.io link to `d3d12`, I realized that I completely forgot to remove these references to the now unused and removed `d3d12` crate in #5956.
This commit is contained in:
parent
b56960b8e8
commit
76f307c92f
@ -21,7 +21,6 @@ The repository hosts the following libraries:
|
||||
- [](https://crates.io/crates/wgpu-hal) [](https://docs.rs/wgpu-hal/) - Internal unsafe GPU API abstraction layer.
|
||||
- [](https://crates.io/crates/wgpu-types) [](https://docs.rs/wgpu-types/) - Rust types shared between all crates.
|
||||
- [](https://crates.io/crates/naga) [](https://docs.rs/naga/) - Stand-alone shader translation library.
|
||||
- [](https://crates.io/crates/d3d12) [](https://docs.rs/d3d12/) - Collection of thin abstractions over d3d12.
|
||||
- [](https://crates.io/crates/deno_webgpu) - WebGPU implementation for the Deno JavaScript/TypeScript runtime
|
||||
|
||||
The following binaries:
|
||||
@ -120,7 +119,7 @@ On Linux, you can point to them using `LD_LIBRARY_PATH` environment.
|
||||
|
||||
Due to complex dependants, we have two MSRV policies:
|
||||
|
||||
- `d3d12`, `naga`, `wgpu-core`, `wgpu-hal`, and `wgpu-types`'s MSRV is **1.76**, but may be lower than the rest of the workspace in the future.
|
||||
- `naga`, `wgpu-core`, `wgpu-hal`, and `wgpu-types`'s MSRV is **1.76**, but may be lower than the rest of the workspace in the future.
|
||||
- The rest of the workspace has an MSRV of **1.76** as well right now, but may be higher than above listed crates.
|
||||
|
||||
It is enforced on CI (in "/.github/workflows/ci.yml") with the `CORE_MSRV` and `REPO_MSRV` variables.
|
||||
|
@ -84,12 +84,12 @@ platform graphics APIs:
|
||||
|
||||
- Metal on macOS, using the [`metal`] crate's bindings.
|
||||
|
||||
- Direct3D 12 on Windows, using the [`d3d12`] crate's bindings.
|
||||
- Direct3D 12 on Windows, using the [`windows`] crate's bindings.
|
||||
|
||||
[`ash`]: https://crates.io/crates/ash
|
||||
[MoltenVK]: https://github.com/KhronosGroup/MoltenVK
|
||||
[`metal`]: https://crates.io/crates/metal
|
||||
[`d3d12`]: https://crates.io/crates/d3d12
|
||||
[`windows`]: https://crates.io/crates/windows
|
||||
|
||||
## Secondary backends
|
||||
|
||||
|
@ -82,12 +82,12 @@
|
||||
//!
|
||||
//! - Metal on macOS, using the [`metal`] crate's bindings.
|
||||
//!
|
||||
//! - Direct3D 12 on Windows, using the [`d3d12`] crate's bindings.
|
||||
//! - Direct3D 12 on Windows, using the [`windows`] crate's bindings.
|
||||
//!
|
||||
//! [`ash`]: https://crates.io/crates/ash
|
||||
//! [MoltenVK]: https://github.com/KhronosGroup/MoltenVK
|
||||
//! [`metal`]: https://crates.io/crates/metal
|
||||
//! [`d3d12`]: https://crates.io/crates/d3d12
|
||||
//! [`windows`]: https://crates.io/crates/windows
|
||||
//!
|
||||
//! ## Secondary backends
|
||||
//!
|
||||
|
Loading…
Reference in New Issue
Block a user