Bug 1818748 - Update wgpu to revision 73b4257b17cc62ecc8df6d6aa3730bd9c6cba4b9. r=webgpu-reviewers,jimb

Differential Revision: https://phabricator.services.mozilla.com/D170905
This commit is contained in:
Teodor Tanasoaia 2023-03-06 17:00:15 +00:00
parent 221d98b0eb
commit 1c86b28363
3 changed files with 11 additions and 11 deletions

6
Cargo.lock generated
View File

@ -6355,7 +6355,7 @@ dependencies = [
[[package]]
name = "wgpu-core"
version = "0.15.0"
source = "git+https://github.com/gfx-rs/wgpu?rev=74303308cd6030071889e865c40aa638214ed938#74303308cd6030071889e865c40aa638214ed938"
source = "git+https://github.com/gfx-rs/wgpu?rev=73b4257b17cc62ecc8df6d6aa3730bd9c6cba4b9#73b4257b17cc62ecc8df6d6aa3730bd9c6cba4b9"
dependencies = [
"arrayvec",
"bit-vec",
@ -6378,7 +6378,7 @@ dependencies = [
[[package]]
name = "wgpu-hal"
version = "0.15.1"
source = "git+https://github.com/gfx-rs/wgpu?rev=74303308cd6030071889e865c40aa638214ed938#74303308cd6030071889e865c40aa638214ed938"
source = "git+https://github.com/gfx-rs/wgpu?rev=73b4257b17cc62ecc8df6d6aa3730bd9c6cba4b9#73b4257b17cc62ecc8df6d6aa3730bd9c6cba4b9"
dependencies = [
"android_system_properties",
"arrayvec",
@ -6415,7 +6415,7 @@ dependencies = [
[[package]]
name = "wgpu-types"
version = "0.15.0"
source = "git+https://github.com/gfx-rs/wgpu?rev=74303308cd6030071889e865c40aa638214ed938#74303308cd6030071889e865c40aa638214ed938"
source = "git+https://github.com/gfx-rs/wgpu?rev=73b4257b17cc62ecc8df6d6aa3730bd9c6cba4b9#73b4257b17cc62ecc8df6d6aa3730bd9c6cba4b9"
dependencies = [
"bitflags",
"js-sys",

View File

@ -17,7 +17,7 @@ default = []
[dependencies.wgc]
package = "wgpu-core"
git = "https://github.com/gfx-rs/wgpu"
rev = "74303308cd6030071889e865c40aa638214ed938"
rev = "73b4257b17cc62ecc8df6d6aa3730bd9c6cba4b9"
#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 = "74303308cd6030071889e865c40aa638214ed938"
rev = "73b4257b17cc62ecc8df6d6aa3730bd9c6cba4b9"
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 = "74303308cd6030071889e865c40aa638214ed938"
rev = "73b4257b17cc62ecc8df6d6aa3730bd9c6cba4b9"
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 = "74303308cd6030071889e865c40aa638214ed938"
rev = "73b4257b17cc62ecc8df6d6aa3730bd9c6cba4b9"
features = ["vulkan"]
[dependencies.wgt]
package = "wgpu-types"
git = "https://github.com/gfx-rs/wgpu"
rev = "74303308cd6030071889e865c40aa638214ed938"
rev = "73b4257b17cc62ecc8df6d6aa3730bd9c6cba4b9"
[dependencies.wgh]
package = "wgpu-hal"
git = "https://github.com/gfx-rs/wgpu"
rev = "74303308cd6030071889e865c40aa638214ed938"
rev = "73b4257b17cc62ecc8df6d6aa3730bd9c6cba4b9"
[dependencies]
bincode = "1"

View File

@ -20,11 +20,11 @@ origin:
# Human-readable identifier for this version/release
# Generally "version NNN", "tag SSS", "bookmark SSS"
release: commit 74303308cd6030071889e865c40aa638214ed938
release: commit 73b4257b17cc62ecc8df6d6aa3730bd9c6cba4b9
# Revision to pull in
# Must be a long or short commit SHA (long preferred)
revision: 74303308cd6030071889e865c40aa638214ed938
revision: 73b4257b17cc62ecc8df6d6aa3730bd9c6cba4b9
license: ['MIT', 'Apache-2.0']