diff --git a/crates/bevy_anti_aliasing/Cargo.toml b/crates/bevy_anti_aliasing/Cargo.toml index a8b51c8568..29cab2621c 100644 --- a/crates/bevy_anti_aliasing/Cargo.toml +++ b/crates/bevy_anti_aliasing/Cargo.toml @@ -31,7 +31,7 @@ bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.17.0-dev" } # other tracing = { version = "0.1", default-features = false, features = ["std"] } -dlss_wgpu = { git = "https://github.com/JMS55/dlss_wgpu", optional = true } +dlss_wgpu = { git = "https://github.com/bevyengine/dlss_wgpu", optional = true } [lints] workspace = true diff --git a/crates/bevy_render/Cargo.toml b/crates/bevy_render/Cargo.toml index 31ac5113a4..f1d2e100ac 100644 --- a/crates/bevy_render/Cargo.toml +++ b/crates/bevy_render/Cargo.toml @@ -103,7 +103,7 @@ wgpu = { version = "25", default-features = false, features = [ "fragile-send-sync-non-atomic-wasm", ] } naga = { version = "25", features = ["wgsl-in"] } -dlss_wgpu = { git = "https://github.com/JMS55/dlss_wgpu", optional = true } +dlss_wgpu = { git = "https://github.com/bevyengine/dlss_wgpu", optional = true } serde = { version = "1", features = ["derive"] } bytemuck = { version = "1.5", features = ["derive", "must_cast"] } downcast-rs = { version = "2", default-features = false, features = ["std"] } diff --git a/release-content/release-notes/dlss.md b/release-content/release-notes/dlss.md index 1c6a8b4862..4a9828b913 100644 --- a/release-content/release-notes/dlss.md +++ b/release-content/release-notes/dlss.md @@ -15,7 +15,7 @@ Compared to Bevy's built-in TAA, DLSS: * Requires running via the Vulkan backend on Windows/Linux (no macOS, web, or mobile support) To use DLSS in your app: -* See https://github.com/JMS55/dlss_wgpu for licensing requirements and setup instructions +* See https://github.com/bevyengine/dlss_wgpu for licensing requirements and setup instructions * Enable Bevy's `dlss` feature * Insert the `DlssProjectId` resource before `DefaultPlugins` when setting up your app * Check for the presence of `Option>` at runtime to see if DLSS is supported on the current machine