Commit b6e69edb authored by Erich Gubler's avatar Erich Gubler
Browse files

Bug 1832451 - Update wgpu to revision...

Bug 1832451 - Update wgpu to revision f71a1bc736fde37509262ca03e91d8f56a13aeb5. r=webgpu-reviewers,nical

Differential Revision: https://phabricator.services.mozilla.com/D177826
parent 2abb72c8
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -6141,7 +6141,7 @@ dependencies = [
[[package]]
name = "wgpu-core"
version = "0.16.0"
source = "git+https://github.com/gfx-rs/wgpu?rev=25cb9f61e9a6be572ee42536bbe57aa5f759a700#25cb9f61e9a6be572ee42536bbe57aa5f759a700"
source = "git+https://github.com/gfx-rs/wgpu?rev=f71a1bc736fde37509262ca03e91d8f56a13aeb5#f71a1bc736fde37509262ca03e91d8f56a13aeb5"
dependencies = [
 "arrayvec",
 "bit-vec",
@@ -6164,7 +6164,7 @@ dependencies = [
[[package]]
name = "wgpu-hal"
version = "0.16.0"
source = "git+https://github.com/gfx-rs/wgpu?rev=25cb9f61e9a6be572ee42536bbe57aa5f759a700#25cb9f61e9a6be572ee42536bbe57aa5f759a700"
source = "git+https://github.com/gfx-rs/wgpu?rev=f71a1bc736fde37509262ca03e91d8f56a13aeb5#f71a1bc736fde37509262ca03e91d8f56a13aeb5"
dependencies = [
 "android_system_properties",
 "arrayvec",
@@ -6201,7 +6201,7 @@ dependencies = [
[[package]]
name = "wgpu-types"
version = "0.16.0"
source = "git+https://github.com/gfx-rs/wgpu?rev=25cb9f61e9a6be572ee42536bbe57aa5f759a700#25cb9f61e9a6be572ee42536bbe57aa5f759a700"
source = "git+https://github.com/gfx-rs/wgpu?rev=f71a1bc736fde37509262ca03e91d8f56a13aeb5#f71a1bc736fde37509262ca03e91d8f56a13aeb5"
dependencies = [
 "bitflags 2.999.999",
 "js-sys",
+6 −6
Original line number Diff line number Diff line
@@ -17,7 +17,7 @@ default = []
[dependencies.wgc]
package = "wgpu-core"
git = "https://github.com/gfx-rs/wgpu"
rev = "25cb9f61e9a6be572ee42536bbe57aa5f759a700"
rev = "f71a1bc736fde37509262ca03e91d8f56a13aeb5"
#Note: "replay" shouldn't ideally be needed,
# but it allows us to serialize everything across IPC.
features = ["replay", "trace", "serial-pass", "strict_asserts", "wgsl"]
@@ -27,32 +27,32 @@ features = ["replay", "trace", "serial-pass", "strict_asserts", "wgsl"]
[target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies.wgc]
package = "wgpu-core"
git = "https://github.com/gfx-rs/wgpu"
rev = "25cb9f61e9a6be572ee42536bbe57aa5f759a700"
rev = "f71a1bc736fde37509262ca03e91d8f56a13aeb5"
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 = "25cb9f61e9a6be572ee42536bbe57aa5f759a700"
rev = "f71a1bc736fde37509262ca03e91d8f56a13aeb5"
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 = "25cb9f61e9a6be572ee42536bbe57aa5f759a700"
rev = "f71a1bc736fde37509262ca03e91d8f56a13aeb5"
features = ["vulkan"]

[dependencies.wgt]
package = "wgpu-types"
git = "https://github.com/gfx-rs/wgpu"
rev = "25cb9f61e9a6be572ee42536bbe57aa5f759a700"
rev = "f71a1bc736fde37509262ca03e91d8f56a13aeb5"

[dependencies.wgh]
package = "wgpu-hal"
git = "https://github.com/gfx-rs/wgpu"
rev = "25cb9f61e9a6be572ee42536bbe57aa5f759a700"
rev = "f71a1bc736fde37509262ca03e91d8f56a13aeb5"

[dependencies]
bincode = "1"
+2 −2
Original line number Diff line number Diff line
@@ -20,11 +20,11 @@ origin:

  # Human-readable identifier for this version/release
  # Generally "version NNN", "tag SSS", "bookmark SSS"
  release: commit 25cb9f61e9a6be572ee42536bbe57aa5f759a700
  release: commit f71a1bc736fde37509262ca03e91d8f56a13aeb5

  # Revision to pull in
  # Must be a long or short commit SHA (long preferred)
  revision: 25cb9f61e9a6be572ee42536bbe57aa5f759a700
  revision: f71a1bc736fde37509262ca03e91d8f56a13aeb5

  license: ['MIT', 'Apache-2.0']