Bump wgpu-core to 0.10.3, wgpu-hal to 0.10.4

This commit is contained in:
Dzmitry Malyshau 2021-09-08 08:55:39 -04:00 committed by Dzmitry Malyshau
parent 64cc3bc82e
commit 8ba618959e
4 changed files with 16 additions and 5 deletions

View File

@ -1,5 +1,16 @@
# Change Log
## wgpu-core-0.10.3, wgpu-hal-0.10.4 (2021-09-08)
- Vulkan:
- fix read access barriers for writable storage buffers
- fix shaders using cube array textures
- work around Linux Intel+Nvidia driver conflicts
- work around Adreno bug with `OpName`
- DX12:
- fix storage binding offsets
- Metal:
- fix compressed texture copies
## wgpu-core-0.10.2, wgpu-hal-0.10.3 (2021-09-01)
- All:
- fix querying the size of storage textures

4
Cargo.lock generated
View File

@ -1806,7 +1806,7 @@ dependencies = [
[[package]]
name = "wgpu-core"
version = "0.10.2"
version = "0.10.3"
dependencies = [
"arrayvec",
"bitflags",
@ -1828,7 +1828,7 @@ dependencies = [
[[package]]
name = "wgpu-hal"
version = "0.10.3"
version = "0.10.4"
dependencies = [
"arrayvec",
"ash",

View File

@ -1,6 +1,6 @@
[package]
name = "wgpu-core"
version = "0.10.2"
version = "0.10.3"
authors = ["wgpu developers"]
edition = "2018"
description = "WebGPU core logic on gfx-hal"
@ -48,7 +48,7 @@ version = "0.10"
[dependencies.hal]
path = "../wgpu-hal"
package = "wgpu-hal"
version = "0.10.1"
version = "0.10.4"
[target.'cfg(all(not(target_arch = "wasm32"), any(target_os = "ios", target_os = "macos")))'.dependencies]
hal = { path = "../wgpu-hal", package = "wgpu-hal", version = "0.10", features = ["metal"] }

View File

@ -1,6 +1,6 @@
[package]
name = "wgpu-hal"
version = "0.10.3"
version = "0.10.4"
authors = ["wgpu developers"]
edition = "2018"
description = "WebGPU hardware abstraction layer"