From 5a2e60c50e54330607b6886f9107d9ad699274c0 Mon Sep 17 00:00:00 2001 From: Nicolas Silva Date: Tue, 10 Jan 2023 20:04:18 +0100 Subject: [PATCH] Update naga to e98bd92 (#3352) --- Cargo.lock | 2 +- Cargo.toml | 2 +- wgpu-core/Cargo.toml | 2 +- wgpu-hal/Cargo.toml | 4 ++-- wgpu/examples/shadow/main.rs | 1 - 5 files changed, 5 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 981c1ca44..0352f25ab 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1430,7 +1430,7 @@ dependencies = [ [[package]] name = "naga" version = "0.10.0" -source = "git+https://github.com/gfx-rs/naga?rev=e7fc8e6#e7fc8e64f2f23397b149217ecce6e123c5aa5092" +source = "git+https://github.com/gfx-rs/naga?rev=e98bd92#e98bd9264c3a6b04dff15a6b1213c0c80201740a" dependencies = [ "bit-set", "bitflags", diff --git a/Cargo.toml b/Cargo.toml index bf4231dde..354384087 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -39,7 +39,7 @@ path = "./wgpu-hal" [workspace.dependencies.naga] git = "https://github.com/gfx-rs/naga" -rev = "e7fc8e6" +rev = "e98bd92" version = "0.10" [workspace.dependencies] diff --git a/wgpu-core/Cargo.toml b/wgpu-core/Cargo.toml index a282b4c6c..9fc224b2a 100644 --- a/wgpu-core/Cargo.toml +++ b/wgpu-core/Cargo.toml @@ -67,7 +67,7 @@ thiserror = "1" [dependencies.naga] git = "https://github.com/gfx-rs/naga" -rev = "e7fc8e6" +rev = "e98bd92" version = "0.10" features = ["clone", "span", "validate"] diff --git a/wgpu-hal/Cargo.toml b/wgpu-hal/Cargo.toml index b5d6b6e64..54f17c552 100644 --- a/wgpu-hal/Cargo.toml +++ b/wgpu-hal/Cargo.toml @@ -111,14 +111,14 @@ android_system_properties = "0.1.1" [dependencies.naga] git = "https://github.com/gfx-rs/naga" -rev = "e7fc8e6" +rev = "e98bd92" version = "0.10" features = ["clone"] # DEV dependencies [dev-dependencies.naga] git = "https://github.com/gfx-rs/naga" -rev = "e7fc8e6" +rev = "e98bd92" version = "0.10" features = ["wgsl-in"] diff --git a/wgpu/examples/shadow/main.rs b/wgpu/examples/shadow/main.rs index dd215dfdd..85cff2af4 100644 --- a/wgpu/examples/shadow/main.rs +++ b/wgpu/examples/shadow/main.rs @@ -853,7 +853,6 @@ fn shadow() { optional_features: wgpu::Features::default(), base_test_parameters: framework::test_common::TestParameters::default() .downlevel_flags(wgpu::DownlevelFlags::COMPARISON_SAMPLERS) - .specific_failure(Some(wgpu::Backends::GL), None, Some("ANGLE"), false) // rpi4 on VK doesn't work: https://gitlab.freedesktop.org/mesa/mesa/-/issues/3916 .specific_failure(Some(wgpu::Backends::VULKAN), None, Some("V3D"), false) // llvmpipe versions in CI are flaky: https://github.com/gfx-rs/wgpu/issues/2594