Bug 1816781 - Update wgpu to revision b33731c44c9dd3bfb79d889e7a699c26c3929cd3. r=webgpu-reviewers,nical

Differential Revision: https://phabricator.services.mozilla.com/D169866
This commit is contained in:
Nicolas Silva 2023-02-15 16:45:32 +00:00
parent add0179a08
commit af2b8ac379
3 changed files with 11 additions and 11 deletions

6
Cargo.lock generated
View File

@ -6353,7 +6353,7 @@ dependencies = [
[[package]]
name = "wgpu-core"
version = "0.15.0"
source = "git+https://github.com/gfx-rs/wgpu?rev=581b22e6a026ac92589be2f36a30357600f9d02c#581b22e6a026ac92589be2f36a30357600f9d02c"
source = "git+https://github.com/gfx-rs/wgpu?rev=b33731c44c9dd3bfb79d889e7a699c26c3929cd3#b33731c44c9dd3bfb79d889e7a699c26c3929cd3"
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=581b22e6a026ac92589be2f36a30357600f9d02c#581b22e6a026ac92589be2f36a30357600f9d02c"
source = "git+https://github.com/gfx-rs/wgpu?rev=b33731c44c9dd3bfb79d889e7a699c26c3929cd3#b33731c44c9dd3bfb79d889e7a699c26c3929cd3"
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=581b22e6a026ac92589be2f36a30357600f9d02c#581b22e6a026ac92589be2f36a30357600f9d02c"
source = "git+https://github.com/gfx-rs/wgpu?rev=b33731c44c9dd3bfb79d889e7a699c26c3929cd3#b33731c44c9dd3bfb79d889e7a699c26c3929cd3"
dependencies = [
"bitflags",
"js-sys",

View File

@ -17,7 +17,7 @@ default = []
[dependencies.wgc]
package = "wgpu-core"
git = "https://github.com/gfx-rs/wgpu"
rev = "581b22e6a026ac92589be2f36a30357600f9d02c"
rev = "b33731c44c9dd3bfb79d889e7a699c26c3929cd3"
#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 = "581b22e6a026ac92589be2f36a30357600f9d02c"
rev = "b33731c44c9dd3bfb79d889e7a699c26c3929cd3"
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 = "581b22e6a026ac92589be2f36a30357600f9d02c"
rev = "b33731c44c9dd3bfb79d889e7a699c26c3929cd3"
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 = "581b22e6a026ac92589be2f36a30357600f9d02c"
rev = "b33731c44c9dd3bfb79d889e7a699c26c3929cd3"
features = ["vulkan"]
[dependencies.wgt]
package = "wgpu-types"
git = "https://github.com/gfx-rs/wgpu"
rev = "581b22e6a026ac92589be2f36a30357600f9d02c"
rev = "b33731c44c9dd3bfb79d889e7a699c26c3929cd3"
[dependencies.wgh]
package = "wgpu-hal"
git = "https://github.com/gfx-rs/wgpu"
rev = "581b22e6a026ac92589be2f36a30357600f9d02c"
rev = "b33731c44c9dd3bfb79d889e7a699c26c3929cd3"
[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 581b22e6a026ac92589be2f36a30357600f9d02c
release: commit b33731c44c9dd3bfb79d889e7a699c26c3929cd3
# Revision to pull in
# Must be a long or short commit SHA (long preferred)
revision: 581b22e6a026ac92589be2f36a30357600f9d02c
revision: b33731c44c9dd3bfb79d889e7a699c26c3929cd3
license: ['MIT', 'Apache-2.0']