mirror of
https://github.com/gfx-rs/wgpu.git
synced 2024-11-21 14:23:32 +00:00
Update changelog
This commit is contained in:
parent
7c491c0d14
commit
a6d020fd63
10
CHANGELOG.md
10
CHANGELOG.md
@ -1,4 +1,8 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## v0.9.3 (2022-11-30)
|
||||||
|
- Fix build failure in rust 1.64 [#2968](https://github.com/gfx-rs/wgpu/pull/2968)
|
||||||
|
|
||||||
## wgpu-core-0.9.2
|
## wgpu-core-0.9.2
|
||||||
- fix `Features::TEXTURE_SPECIFIC_FORMAT_FEATURES` not being supported for rendertargets
|
- fix `Features::TEXTURE_SPECIFIC_FORMAT_FEATURES` not being supported for rendertargets
|
||||||
|
|
||||||
@ -45,6 +49,9 @@
|
|||||||
- Add missing extern "C" in wgpu-core on `wgpu_render_pass_execute_bundles`
|
- Add missing extern "C" in wgpu-core on `wgpu_render_pass_execute_bundles`
|
||||||
- Fix incorrect function name `wgpu_render_pass_bundle_indexed_indirect` to `wgpu_render_bundle_draw_indexed_indirect`.
|
- Fix incorrect function name `wgpu_render_pass_bundle_indexed_indirect` to `wgpu_render_bundle_draw_indexed_indirect`.
|
||||||
|
|
||||||
|
## v0.8.2 (2022-11-30)
|
||||||
|
- Fix build failure in rust 1.64 [#2967](https://github.com/gfx-rs/wgpu/pull/2967)
|
||||||
|
|
||||||
## wgpu-types-0.8.1 (2021-06-08)
|
## wgpu-types-0.8.1 (2021-06-08)
|
||||||
- fix dynamic stencil reference for Replace ops
|
- fix dynamic stencil reference for Replace ops
|
||||||
|
|
||||||
@ -91,6 +98,9 @@
|
|||||||
- interpolation qualifiers
|
- interpolation qualifiers
|
||||||
- allow vertex components to be underspecified
|
- allow vertex components to be underspecified
|
||||||
|
|
||||||
|
## v0.7.2 (2022-11-30)
|
||||||
|
- Fix build failure in rust 1.64 [#2966](https://github.com/gfx-rs/wgpu/pull/2966)
|
||||||
|
|
||||||
## wgpu-core-0.7.1 (2021-02-25)
|
## wgpu-core-0.7.1 (2021-02-25)
|
||||||
- expose `wgc::device::queue` sub-module in public
|
- expose `wgc::device::queue` sub-module in public
|
||||||
- fix the indexed buffer check
|
- fix the indexed buffer check
|
||||||
|
4
Cargo.lock
generated
4
Cargo.lock
generated
@ -2222,7 +2222,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "wgpu-core"
|
name = "wgpu-core"
|
||||||
version = "0.9.2"
|
version = "0.9.3"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"arrayvec",
|
"arrayvec",
|
||||||
"bitflags",
|
"bitflags",
|
||||||
@ -2253,7 +2253,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "wgpu-types"
|
name = "wgpu-types"
|
||||||
version = "0.9.0"
|
version = "0.9.3"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bitflags",
|
"bitflags",
|
||||||
"serde",
|
"serde",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "wgpu-core"
|
name = "wgpu-core"
|
||||||
version = "0.9.2"
|
version = "0.9.3"
|
||||||
authors = ["wgpu developers"]
|
authors = ["wgpu developers"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "WebGPU core logic on gfx-hal"
|
description = "WebGPU core logic on gfx-hal"
|
||||||
@ -65,7 +65,7 @@ features = ["spv-in", "spv-out", "wgsl-in"]
|
|||||||
[dependencies.wgt]
|
[dependencies.wgt]
|
||||||
path = "../wgpu-types"
|
path = "../wgpu-types"
|
||||||
package = "wgpu-types"
|
package = "wgpu-types"
|
||||||
version = "0.9"
|
version = "0.9.3"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
loom = "0.3"
|
loom = "0.3"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "wgpu-types"
|
name = "wgpu-types"
|
||||||
version = "0.9.0"
|
version = "0.9.3"
|
||||||
authors = ["wgpu developers"]
|
authors = ["wgpu developers"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "WebGPU types"
|
description = "WebGPU types"
|
||||||
|
Loading…
Reference in New Issue
Block a user