mirror of
https://github.com/gfx-rs/wgpu.git
synced 2024-11-21 22:33:49 +00:00
Bump wgpu-core to 0.11.3 and wgpu-hal to 0.11.5
This commit is contained in:
parent
38df943ffe
commit
48a51b4e6c
25
CHANGELOG.md
25
CHANGELOG.md
@ -1,5 +1,30 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## wgpu-core-0.11.3, wgpu-hal-0.11.5, wgpu-0.11.1 (2021-12-01)
|
||||||
|
- Core:
|
||||||
|
- validate device descriptor before actually creating it
|
||||||
|
- fix validation of texture-sampler pairs
|
||||||
|
- Vulkan:
|
||||||
|
- fix running on Vulkan-1.1 instance
|
||||||
|
- improve detection of workaround for Intel+Nvidia on Linux
|
||||||
|
- fix resource limits on Vulkan-1.2
|
||||||
|
- fix the check for storage buffer requirement
|
||||||
|
- change internal semaphore logic to work around Linux+Intel bugs
|
||||||
|
- fix enabling extension-provided features
|
||||||
|
- GLES:
|
||||||
|
- fix running on old and bogus drivers
|
||||||
|
- fix stale samplers on bindings change
|
||||||
|
- fix integer textures
|
||||||
|
- fix querying work group parameters
|
||||||
|
- fix stale PBO bindings caused by resource copies
|
||||||
|
- fix rendering to cubemap faces
|
||||||
|
- fix `Rgba16Float` format
|
||||||
|
- fix stale vertex attributes when changing the pipeline
|
||||||
|
- Metal:
|
||||||
|
- fix window resizing for running in multiple processes
|
||||||
|
- Web:
|
||||||
|
- fix `set_index_buffer` and `set_vertex_buffer` to have optional sizes
|
||||||
|
|
||||||
## wgpu-core-0.11.2, wgpu-hal-0.11.4 (2021-10-22)
|
## wgpu-core-0.11.2, wgpu-hal-0.11.4 (2021-10-22)
|
||||||
- fix buffer transition barriers
|
- fix buffer transition barriers
|
||||||
- Metal:
|
- Metal:
|
||||||
|
10
Cargo.lock
generated
10
Cargo.lock
generated
@ -983,9 +983,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "naga"
|
name = "naga"
|
||||||
version = "0.7.0"
|
version = "0.7.2"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "032288733590c094012e5f1dec15848be90015bb9b3fd16743d84ea582c4154a"
|
checksum = "63765d243f5d32ece09b2ff95c1f50ec7353266024a2ce89619a09e1b6aa4cce"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bit-set",
|
"bit-set",
|
||||||
"bitflags",
|
"bitflags",
|
||||||
@ -1782,7 +1782,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "wgpu"
|
name = "wgpu"
|
||||||
version = "0.11.0"
|
version = "0.11.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"arrayvec",
|
"arrayvec",
|
||||||
"async-executor",
|
"async-executor",
|
||||||
@ -1816,7 +1816,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "wgpu-core"
|
name = "wgpu-core"
|
||||||
version = "0.11.2"
|
version = "0.11.3"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"arrayvec",
|
"arrayvec",
|
||||||
"bitflags",
|
"bitflags",
|
||||||
@ -1838,7 +1838,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "wgpu-hal"
|
name = "wgpu-hal"
|
||||||
version = "0.11.4"
|
version = "0.11.5"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"arrayvec",
|
"arrayvec",
|
||||||
"ash",
|
"ash",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "wgpu-core"
|
name = "wgpu-core"
|
||||||
version = "0.11.2"
|
version = "0.11.3"
|
||||||
authors = ["wgpu developers"]
|
authors = ["wgpu developers"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "WebGPU core logic on wgpu-hal"
|
description = "WebGPU core logic on wgpu-hal"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "wgpu-hal"
|
name = "wgpu-hal"
|
||||||
version = "0.11.4"
|
version = "0.11.5"
|
||||||
authors = ["wgpu developers"]
|
authors = ["wgpu developers"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "WebGPU hardware abstraction layer"
|
description = "WebGPU hardware abstraction layer"
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "wgpu"
|
name = "wgpu"
|
||||||
version = "0.11.0"
|
version = "0.11.1"
|
||||||
authors = ["wgpu developers"]
|
authors = ["wgpu developers"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "Rusty WebGPU API wrapper"
|
description = "Rusty WebGPU API wrapper"
|
||||||
homepage = "https://wgpu.rs/"
|
homepage = "https://wgpu.rs/"
|
||||||
repository = "https://github.com/gfx-rs/wgpu/tree/v0.10"
|
repository = "https://github.com/gfx-rs/wgpu/tree/v0.11"
|
||||||
keywords = ["graphics"]
|
keywords = ["graphics"]
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
exclude = [
|
exclude = [
|
||||||
|
Loading…
Reference in New Issue
Block a user