changelog: Import from and synchronize with 0.37.2
release
This commit is contained in:
parent
043c00c404
commit
7f6954300b
17
Changelog.md
17
Changelog.md
|
@ -11,16 +11,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
- Replaced builders with lifetimes/setters directly on Vulkan structs (#602)
|
- Replaced builders with lifetimes/setters directly on Vulkan structs (#602)
|
||||||
- Inlined struct setters (#602)
|
- Inlined struct setters (#602)
|
||||||
|
|
||||||
### Added
|
|
||||||
|
|
||||||
- Update Vulkan-Headers to 1.3.238 (#688)
|
|
||||||
|
|
||||||
### Removed
|
### Removed
|
||||||
|
|
||||||
- Removed all code generated for `"disabled"` extensions, typically with a number rather than a descriptive name (#448)
|
- Removed all code generated for `"disabled"` extensions, typically with a number rather than a descriptive name (#448)
|
||||||
- Removed experimental AMD extensions (#607)
|
- Removed experimental AMD extensions (#607)
|
||||||
- Removed misnamed, deprecated `debug_utils_set_object_name()` and `debug_utils_set_object_tag()` entirely, use `set_debug_utils_object_name()` and `set_debug_utils_object_tag()` instead (#661)
|
- Removed misnamed, deprecated `debug_utils_set_object_name()` and `debug_utils_set_object_tag()` entirely, use `set_debug_utils_object_name()` and `set_debug_utils_object_tag()` instead (#661)
|
||||||
|
|
||||||
|
## [0.37.2] - 2022-01-11
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Update Vulkan-Headers to 1.3.238 (#688)
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
- `VK_KHR_draw_indirect_count`: use `cmd_draw_indirect_count_khr` instead of `cmd_draw_indexed_indirect_count_khr` for non-indexed draw call (#695)
|
- `VK_KHR_draw_indirect_count`: use `cmd_draw_indirect_count_khr` instead of `cmd_draw_indexed_indirect_count_khr` for non-indexed draw call (#695)
|
||||||
|
@ -53,7 +55,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
- `khr::RayTracingPipeline`: Set the buffer length in `get_ray_tracing_capture_replay_shader_group_handles` so it no longer always returns an empty `Vec` (#658)
|
- `VK_KHR_ray_tracing_pipeline`: Set the buffer length in `get_ray_tracing_capture_replay_shader_group_handles` so it no longer always returns an empty `Vec` (#658)
|
||||||
|
|
||||||
## [0.37.0] - 2022-03-23
|
## [0.37.0] - 2022-03-23
|
||||||
|
|
||||||
|
@ -73,7 +75,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
- extensions/khr: Drop `_khr` suffix from `get_memory_fd_properties_khr` in `ExternalMemoryFd` (#580)
|
- `VK_KHR_external_memory_fd`: Drop `_khr` suffix from `get_memory_fd_properties_khr` (#580)
|
||||||
- entry: Allow querying `enumerate_instance_extension_properties()` by layer name (#574)
|
- entry: Allow querying `enumerate_instance_extension_properties()` by layer name (#574)
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
@ -370,7 +372,8 @@ flags: vk::CommandPoolCreateFlags::RESET_COMMAND_BUFFER_BIT,
|
||||||
can write to aligned memory.
|
can write to aligned memory.
|
||||||
|
|
||||||
|
|
||||||
[Unreleased]: https://github.com/MaikKlein/ash/compare/0.37.1...HEAD
|
[Unreleased]: https://github.com/MaikKlein/ash/compare/0.37.2...HEAD
|
||||||
|
[0.37.2]: https://github.com/MaikKlein/ash/releases/tag/0.37.2
|
||||||
[0.37.1]: https://github.com/MaikKlein/ash/releases/tag/0.37.1
|
[0.37.1]: https://github.com/MaikKlein/ash/releases/tag/0.37.1
|
||||||
[0.37.0]: https://github.com/MaikKlein/ash/releases/tag/0.37.0
|
[0.37.0]: https://github.com/MaikKlein/ash/releases/tag/0.37.0
|
||||||
[0.36.0]: https://github.com/MaikKlein/ash/releases/tag/0.36.0
|
[0.36.0]: https://github.com/MaikKlein/ash/releases/tag/0.36.0
|
||||||
|
|
|
@ -1,7 +1,11 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ash"
|
name = "ash"
|
||||||
version = "0.37.0+1.3.238"
|
version = "0.37.0+1.3.238"
|
||||||
authors = ["maik klein <maikklein@googlemail.com>"]
|
authors = [
|
||||||
|
"Maik Klein <maikklein@googlemail.com>",
|
||||||
|
"Benjamin Saunders <ben.e.saunders@gmail.com>",
|
||||||
|
"Marijn Suijten <marijn@traverseresearch.nl>",
|
||||||
|
]
|
||||||
description = "Vulkan bindings for Rust"
|
description = "Vulkan bindings for Rust"
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
repository = "https://github.com/MaikKlein/ash"
|
repository = "https://github.com/MaikKlein/ash"
|
||||||
|
|
Loading…
Reference in a new issue