From 434aa4adde4b02598ff751743175bd0bc6935c62 Mon Sep 17 00:00:00 2001 From: Elabajaba Date: Tue, 9 Jan 2024 18:27:19 -0500 Subject: [PATCH] bump wgpu --- crates/bevy_pbr/Cargo.toml | 4 ++-- crates/bevy_render/Cargo.toml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/crates/bevy_pbr/Cargo.toml b/crates/bevy_pbr/Cargo.toml index c9a275134baef9..068bb3210f216c 100644 --- a/crates/bevy_pbr/Cargo.toml +++ b/crates/bevy_pbr/Cargo.toml @@ -40,13 +40,13 @@ thread_local = "1.0" [target.'cfg(target_arch = "wasm32")'.dependencies] # naga_oil = { version = "0.11" } -naga_oil = { git = "https://github.com/Elabajaba/naga_oil.git", rev = "87eacc06e0aff2f5d822c9398eb6a033b1453042" } +naga_oil = { git = "https://github.com/Elabajaba/naga_oil.git", rev = "29a672905ccdef14e562d8ac860015779e63067e" } [target.'cfg(not(target_arch = "wasm32"))'.dependencies] # Omit the `glsl` feature in non-WebAssembly by default. #naga_oil = { version = "0.11", default-features = false, features = [ -naga_oil = { git = "https://github.com/Elabajaba/naga_oil.git", rev = "87eacc06e0aff2f5d822c9398eb6a033b1453042", default-features = false, features = [ +naga_oil = { git = "https://github.com/Elabajaba/naga_oil.git", rev = "29a672905ccdef14e562d8ac860015779e63067e", default-features = false, features = [ "test_shader", ] } diff --git a/crates/bevy_render/Cargo.toml b/crates/bevy_render/Cargo.toml index 3fa91930e1ca70..15483761dfd13e 100644 --- a/crates/bevy_render/Cargo.toml +++ b/crates/bevy_render/Cargo.toml @@ -63,13 +63,13 @@ codespan-reporting = "0.11.0" # `fragile-send-sync-non-atomic-wasm` feature means we can't use WASM threads for rendering # It is enabled for now to avoid having to do a significant overhaul of the renderer just for wasm # wgpu = { version = "0.18", features = [ -wgpu = { git = "https://github.com/gfx-rs/wgpu.git", rev = "d7296ac30b7948d6d111ffe201d7c47c246d16cd", features = [ +wgpu = { git = "https://github.com/gfx-rs/wgpu.git", rev = "4400a5847080d1164bdca93a90622414963ed9f3", features = [ "naga", "fragile-send-sync-non-atomic-wasm", ] } -naga = { git = "https://github.com/gfx-rs/wgpu.git", rev = "d7296ac30b7948d6d111ffe201d7c47c246d16cd", features = ["wgsl-in"] } +naga = { git = "https://github.com/gfx-rs/wgpu.git", rev = "4400a5847080d1164bdca93a90622414963ed9f3", features = ["wgsl-in"] } # naga_oil = { version = "0.11", default-features = false, features = [ -naga_oil = { git = "https://github.com/Elabajaba/naga_oil.git", rev = "87eacc06e0aff2f5d822c9398eb6a033b1453042", default-features = false, features = [ +naga_oil = { git = "https://github.com/Elabajaba/naga_oil.git", rev = "29a672905ccdef14e562d8ac860015779e63067e", default-features = false, features = [ "test_shader", ] } serde = { version = "1", features = ["derive"] }