diff options
author | 2024-02-03 17:25:24 +0000 | |
---|---|---|
committer | 2024-02-10 03:08:43 +0100 | |
commit | 63f4f4283ff85426296f1b922a56f9fda2b8e12b (patch) | |
tree | 00d7f52a4d3f6897bc92b2c2f72578f85e4736a5 | |
parent | c63529095604ffde00a504ed083474707ab484de (diff) | |
download | iced-63f4f4283ff85426296f1b922a56f9fda2b8e12b.tar.gz iced-63f4f4283ff85426296f1b922a56f9fda2b8e12b.tar.bz2 iced-63f4f4283ff85426296f1b922a56f9fda2b8e12b.zip |
Fix dead documentation link in wgpu/README.md
-rw-r--r-- | CHANGELOG.md | 2 | ||||
-rw-r--r-- | wgpu/README.md | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 7c51be76..793aff61 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -104,6 +104,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Missing feature flag docs for `time::every`. [#2188](https://github.com/iced-rs/iced/pull/2188) - Event loop not being resumed on Windows while resizing. [#2214](https://github.com/iced-rs/iced/pull/2214) - Alpha mode misconfiguration in `iced_wgpu`. [#2231](https://github.com/iced-rs/iced/pull/2231) +- Outdated documentation leading to a dead link. [#2232](https://github.com/iced-rs/iced/pull/2232) Many thanks to... @@ -135,6 +136,7 @@ Many thanks to... - @jim-ec - @joshuamegnauth54 - @jpttrssn +- @julianbraha - @Koranir - @lufte - @matze diff --git a/wgpu/README.md b/wgpu/README.md index f8c88374..95d7028a 100644 --- a/wgpu/README.md +++ b/wgpu/README.md @@ -4,7 +4,7 @@ [](https://github.com/iced-rs/iced/blob/master/LICENSE) [](https://discord.gg/3xZJ65GAhd) -`iced_wgpu` is a [`wgpu`] renderer for [`iced_native`]. For now, it is the default renderer of Iced on [native platforms]. +`iced_wgpu` is a [`wgpu`] renderer for [`iced_runtime`]. For now, it is the default renderer of Iced on [native platforms]. [`wgpu`] supports most modern graphics backends: Vulkan, Metal, and DX12 (OpenGL and WebGL are still WIP). Additionally, it will support the incoming [WebGPU API]. @@ -20,7 +20,7 @@ Currently, `iced_wgpu` supports the following primitives: </p> [documentation]: https://docs.rs/iced_wgpu -[`iced_native`]: ../native +[`iced_runtime`]: ../runtime [`wgpu`]: https://github.com/gfx-rs/wgpu [native platforms]: https://github.com/gfx-rs/wgpu#supported-platforms [WebGPU API]: https://gpuweb.github.io/gpuweb/ |