Skip to content

Commit 3a20462

Browse files
committed
Useful changes with relicensing benefits (#2497)
This obsoletes #1111 and #2445, since @ColonisationCaptain and @temhotaokeaha haven't replied to #2373. I believe that both of those PRs would be fine to keep, but they're even more fine to keep now :)
1 parent f6dbc25 commit 3a20462

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ Bevy has the following [Focus Areas](https://github.com/bevyengine/bevy/labels/f
7878

7979
Bevy is only possible because of the hard work put into these foundational technologies:
8080

81-
* [wgpu](https://github.com/gfx-rs/wgpu): modern / low-level / cross-platform graphics library inspired by Vulkan
81+
* [wgpu](https://wgpu.rs/): modern / low-level / cross-platform graphics library inspired by Vulkan
8282
* [glam-rs](https://github.com/bitshifter/glam-rs): a simple and fast 3D math library for games and graphics
8383
* [winit](https://github.com/rust-windowing/winit): cross-platform window creation and management in Rust
8484
* [spirv-reflect](https://github.com/gwihlidal/spirv-reflect-rs): Reflection API in rust for SPIR-V shader byte code

crates/bevy_internal/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ pub mod winit {
130130

131131
#[cfg(feature = "bevy_wgpu")]
132132
pub mod wgpu {
133-
//! A render backend utilizing [wgpu](https://github.com/gfx-rs/wgpu-rs).
133+
//! A render backend utilizing [wgpu](https://wgpu.rs/).
134134
pub use bevy_wgpu::*;
135135
}
136136

docs/debugging.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ To capture a wgpu trace:
1515

1616
1. Create a new `wgpu_trace` folder in the root of your cargo workspace
1717
2. Add the "wgpu_trace" feature to the bevy crate. (ex: `cargo run --example features wgpu_trace`)
18-
3. Zip up the wgpu_trace folder and attach it to the relevant issue. New wgpu issues should generally be created [here](https://github.com/gfx-rs/wgpu). Please include the wgpu revision in your bug reports. You can find the revision in the `Cargo.lock` file in your workspace.
18+
3. Zip up the wgpu_trace folder and attach it to the relevant issue. New wgpu issues should generally be created [in the wgpu repository](https://github.com/gfx-rs/wgpu). Please include the wgpu revision in your bug reports. You can find the revision in the `Cargo.lock` file in your workspace.

docs/linux_dependencies.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Compiling with clang is also possible - replace the `g++` package with `clang`.
2020
Graphics and audio need to be configured for them to work with WSL 2 backend.
2121
Please see the ubuntu [WSL documentation](https://wiki.ubuntu.com/WSL) on how to set up graphics and audio.
2222

23-
## Fedora 33
23+
## Fedora
2424

2525
```bash
2626
sudo dnf install gcc-c++ libX11-devel alsa-lib-devel systemd-devel

0 commit comments

Comments
 (0)