Relase wgpu-hal-0.11.4 and wgpu-core-0.11.2

This commit is contained in:
Dzmitry Malyshau 2021-10-22 09:53:02 -04:00
parent dff9734a3e
commit e7aeb4c218
4 changed files with 17 additions and 5 deletions

View File

@ -1,6 +1,18 @@
# Change Log
## wgpu-core-0.11.3 (2021-10-16)
## wgpu-core-0.11.2, wgpu-hal-0.11.4 (2021-10-22)
- fix buffer transition barriers
- Metal:
- disable RW buffers on macOS 10.11
- fix memory leaks in render pass descriptor
- WebGL:
- fix surface reconfiguration
- GLES:
- fix mapping when persistent mapping isn't supported
- allow presentation in Android emulator
- fix sRGB attributes on EGL-1.4 contexts
## wgpu-hal-0.11.3 (2021-10-16)
- GL:
- fix mapping flags and buffer initialization
- fix context creation when sRGB is available

4
Cargo.lock generated
View File

@ -1816,7 +1816,7 @@ dependencies = [
[[package]]
name = "wgpu-core"
version = "0.11.1"
version = "0.11.2"
dependencies = [
"arrayvec",
"bitflags",
@ -1838,7 +1838,7 @@ dependencies = [
[[package]]
name = "wgpu-hal"
version = "0.11.3"
version = "0.11.4"
dependencies = [
"arrayvec",
"ash",

View File

@ -1,6 +1,6 @@
[package]
name = "wgpu-core"
version = "0.11.1"
version = "0.11.2"
authors = ["wgpu developers"]
edition = "2018"
description = "WebGPU core logic on wgpu-hal"

View File

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