mirror of
https://github.com/gfx-rs/wgpu.git
synced 2025-02-16 17:02:32 +00:00
Bump wgpu-core to 0.10.3, wgpu-hal to 0.10.4
This commit is contained in:
parent
64cc3bc82e
commit
8ba618959e
11
CHANGELOG.md
11
CHANGELOG.md
@ -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
4
Cargo.lock
generated
@ -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",
|
||||
|
@ -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"] }
|
||||
|
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user