Update wgpu to 0.17 (#30147)

This commit is contained in:
Samson 2023-08-21 09:40:06 +02:00 committed by GitHub
parent 85a37210c2
commit db2cbff9d6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 159 additions and 91 deletions

View file

@ -22,17 +22,17 @@ servo_config = { path = "../config" }
smallvec = { workspace = true, features = ["serde"] }
webrender_api = { workspace = true }
webrender_traits = { path = "../webrender_traits" }
wgpu-core = { version = "0.16", features = ["replay", "trace", "serial-pass", "wgsl"] }
wgpu-types = { version = "0.16" }
wgpu-core = { version = "0.17", features = ["replay", "trace", "serial-pass", "wgsl"] }
wgpu-types = { version = "0.17" }
[target.'cfg(any(target_os = "ios", target_os = "macos"))'.dependencies.wgpu-core]
version = "0.16"
version = "0.17"
features = ["replay", "trace", "serial-pass", "metal"]
[target.'cfg(all(unix, not(target_os = "ios"), not(target_os = "macos")))'.dependencies.wgpu-core]
version = "0.16"
version = "0.17"
features = ["replay", "trace", "serial-pass", "vulkan"]
[target.'cfg(windows)'.dependencies.wgpu-core]
version = "0.16"
version = "0.17"
features = ["replay", "trace", "serial-pass", "dx11", "dx12", "vulkan"]