From 65e3f711d52a2041e33c4963049f9e8a48ffcee1 Mon Sep 17 00:00:00 2001 From: Nicolas Silva Date: Tue, 14 Feb 2023 20:55:39 +0000 Subject: [PATCH] Bug 1816480 - Update wgpu to revision 581b22e6a026ac92589be2f36a30357600f9d02c. r=webgpu-reviewers,jimb Differential Revision: https://phabricator.services.mozilla.com/D169826 --- Cargo.lock | 6 +++--- gfx/wgpu_bindings/Cargo.toml | 12 ++++++------ gfx/wgpu_bindings/moz.yaml | 4 ++-- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 35044405d6ca..e20f959f0214 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6353,7 +6353,7 @@ dependencies = [ [[package]] name = "wgpu-core" version = "0.15.0" -source = "git+https://github.com/gfx-rs/wgpu?rev=41de797c745d317e93b9cf50e7446faff7f65954#41de797c745d317e93b9cf50e7446faff7f65954" +source = "git+https://github.com/gfx-rs/wgpu?rev=581b22e6a026ac92589be2f36a30357600f9d02c#581b22e6a026ac92589be2f36a30357600f9d02c" dependencies = [ "arrayvec", "bit-vec", @@ -6376,7 +6376,7 @@ dependencies = [ [[package]] name = "wgpu-hal" version = "0.15.1" -source = "git+https://github.com/gfx-rs/wgpu?rev=41de797c745d317e93b9cf50e7446faff7f65954#41de797c745d317e93b9cf50e7446faff7f65954" +source = "git+https://github.com/gfx-rs/wgpu?rev=581b22e6a026ac92589be2f36a30357600f9d02c#581b22e6a026ac92589be2f36a30357600f9d02c" dependencies = [ "android_system_properties", "arrayvec", @@ -6414,7 +6414,7 @@ dependencies = [ [[package]] name = "wgpu-types" version = "0.15.0" -source = "git+https://github.com/gfx-rs/wgpu?rev=41de797c745d317e93b9cf50e7446faff7f65954#41de797c745d317e93b9cf50e7446faff7f65954" +source = "git+https://github.com/gfx-rs/wgpu?rev=581b22e6a026ac92589be2f36a30357600f9d02c#581b22e6a026ac92589be2f36a30357600f9d02c" dependencies = [ "bitflags", "js-sys", diff --git a/gfx/wgpu_bindings/Cargo.toml b/gfx/wgpu_bindings/Cargo.toml index 7b0292b29e79..e7fced51a828 100644 --- a/gfx/wgpu_bindings/Cargo.toml +++ b/gfx/wgpu_bindings/Cargo.toml @@ -17,7 +17,7 @@ default = [] [dependencies.wgc] package = "wgpu-core" git = "https://github.com/gfx-rs/wgpu" -rev = "41de797c745d317e93b9cf50e7446faff7f65954" +rev = "581b22e6a026ac92589be2f36a30357600f9d02c" #Note: "replay" shouldn't ideally be needed, # but it allows us to serialize everything across IPC. features = ["replay", "trace", "serial-pass", "strict_asserts", "wgsl", "renderdoc"] @@ -27,32 +27,32 @@ features = ["replay", "trace", "serial-pass", "strict_asserts", "wgsl", "renderd [target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies.wgc] package = "wgpu-core" git = "https://github.com/gfx-rs/wgpu" -rev = "41de797c745d317e93b9cf50e7446faff7f65954" +rev = "581b22e6a026ac92589be2f36a30357600f9d02c" features = ["metal"] # We want the wgpu-core Direct3D backends on Windows. [target.'cfg(windows)'.dependencies.wgc] package = "wgpu-core" git = "https://github.com/gfx-rs/wgpu" -rev = "41de797c745d317e93b9cf50e7446faff7f65954" +rev = "581b22e6a026ac92589be2f36a30357600f9d02c" features = ["dx11", "dx12"] # We want the wgpu-core Vulkan backend on Linux and Windows. [target.'cfg(any(windows, all(unix, not(any(target_os = "macos", target_os = "ios")))))'.dependencies.wgc] package = "wgpu-core" git = "https://github.com/gfx-rs/wgpu" -rev = "41de797c745d317e93b9cf50e7446faff7f65954" +rev = "581b22e6a026ac92589be2f36a30357600f9d02c" features = ["vulkan"] [dependencies.wgt] package = "wgpu-types" git = "https://github.com/gfx-rs/wgpu" -rev = "41de797c745d317e93b9cf50e7446faff7f65954" +rev = "581b22e6a026ac92589be2f36a30357600f9d02c" [dependencies.wgh] package = "wgpu-hal" git = "https://github.com/gfx-rs/wgpu" -rev = "41de797c745d317e93b9cf50e7446faff7f65954" +rev = "581b22e6a026ac92589be2f36a30357600f9d02c" [dependencies] bincode = "1" diff --git a/gfx/wgpu_bindings/moz.yaml b/gfx/wgpu_bindings/moz.yaml index f8c9980149b2..757665dd85f8 100644 --- a/gfx/wgpu_bindings/moz.yaml +++ b/gfx/wgpu_bindings/moz.yaml @@ -20,11 +20,11 @@ origin: # Human-readable identifier for this version/release # Generally "version NNN", "tag SSS", "bookmark SSS" - release: commit 41de797c745d317e93b9cf50e7446faff7f65954 + release: commit 581b22e6a026ac92589be2f36a30357600f9d02c # Revision to pull in # Must be a long or short commit SHA (long preferred) - revision: 41de797c745d317e93b9cf50e7446faff7f65954 + revision: 581b22e6a026ac92589be2f36a30357600f9d02c license: ['MIT', 'Apache-2.0']