mirror of
https://github.com/gfx-rs/wgpu.git
synced 2024-11-22 14:55:05 +00:00
Relase wgpu-hal-0.11.4 and wgpu-core-0.11.2
This commit is contained in:
parent
dff9734a3e
commit
e7aeb4c218
14
CHANGELOG.md
14
CHANGELOG.md
@ -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
4
Cargo.lock
generated
@ -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",
|
||||
|
@ -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"
|
||||
|
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user