ash/Changelog.md

132 lines
4 KiB
Markdown
Raw Normal View History

2020-03-23 06:27:37 +11:00
### Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased] - ReleaseDate
2020-05-11 05:14:01 +10:00
## [0.31.0] - 2020-05-10
### Added
- `libloading` is now an optional dependency, but still used by default
- Add metal surface extension
- Implement `VK_KHR_draw_indirect_count`
- Added const qualifier to `as_raw` and `from_raw` fns on enums
### Changed
2020-05-11 05:14:01 +10:00
- The `vk::Device` parameter in 1.2 functions is now implicit
- Moved library creation out of `Entry::new_custom`
### Fixed
- Initialize MemoryRequirements with `Default` instead of `zeroed`
2020-03-23 06:27:37 +11:00
## [0.30.0] - 2020-03-22
### Added
- Support for Vulkan 1.2 (Generated from spec 1.2.135)
- Add `VK_KHR_timeline_semaphore` extension support
- Add `VK_KHR_ray_tracing` extension support
- Add `VK_KHR_external_memory_fd` extension support
- More safety docs
- Expose raw function pointers in extensions
### Changed
- Switch to [libloading](https://github.com/nagisa/rust_libloading)
2020-03-24 22:22:14 +11:00
- Vulkan version macros are now const functions
2020-03-23 06:27:37 +11:00
- Switched to a new [changelog](https://keepachangelog.com/en/1.0.0/) format
### Fixed
- Fix XCB types
- Fix OSX build errors of the examples
## Before 0.30.0
### 0.29.0
- -Breaking-: Removed Display impl for flags. The Debug impl now reports flags by name.
- Functions now have a doc comment that links to the Vulkan spec
- Entry has a new method called `try_enumerate_instance_version` which can be used in a 1.0 context.
- The generator now uses `BTreeMap` for better diffs.
### 0.28.0
- Switched to a new [changelog](https://keepachangelog.com/en/1.0.0/) format
- Fixed a build issue on ARM.
- -Breaking- Arrays are now passed by reference.
- Builders are now marked as `#[transparent]`.
- -Breaking- Renamed `.next(..)` to `push_next`. `push_next` is only available on structs that are passed directly. Addtionally `push_next` only accepts structs that can be inserted into the pointer chain. Read the readme for more information.
- New -experimental- extensions. Those do not follow the semver rules and can be removed at any time.
- Added `AmdGpaInterface` extension.
2019-03-11 06:32:12 +11:00
2019-01-13 22:41:44 +11:00
# 0.27.0/1
2020-03-23 06:27:37 +11:00
- Extensions are now namespaced. `ash::extensions::khr::Swapchain`
- Removed vendor tags from extension methods
- Added missing functions for VkEvent
- The examples were updated to use the new builder pattern
- A SPIR-V parsing function `ash::util::read_spv`
- Added `get_pipeline_cache_data`
2019-01-13 22:41:44 +11:00
2020-03-23 06:27:37 +11:00
### 0.26.0
2018-11-17 04:45:54 +11:00
2020-03-23 06:27:37 +11:00
- Fix loader on MacOS.
2018-11-17 04:45:54 +11:00
2020-03-23 06:27:37 +11:00
- Expose function pointers for easier interop with external libraries.
2018-11-17 04:45:54 +11:00
2020-03-23 06:27:37 +11:00
- Builder now uses bool instead of Bool32.
### 0.25.0
2017-07-09 17:13:36 +10:00
2020-03-23 06:27:37 +11:00
- Adds support for Vulkan 1.1
2017-07-09 17:13:36 +10:00
2020-03-23 06:27:37 +11:00
- Constants are not represented as an `enum` anymore. Constants and flags are both represented as associated constants.
2018-11-12 04:29:11 +11:00
```Rust
flags: vk::COMMAND_POOL_CREATE_RESET_COMMAND_BUFFER_BIT,
//to
flags: vk::CommandPoolCreateFlags::RESET_COMMAND_BUFFER_BIT,
```
2020-03-23 06:27:37 +11:00
- Pretty printing for flags
2018-11-12 04:29:11 +11:00
2020-03-23 06:27:37 +11:00
- Handles can be loaded from outside of ash. See `SomeHandle::from_raw`. This is useful if you need to interact with a C library.
2018-11-12 04:29:11 +11:00
2020-03-23 06:27:37 +11:00
- Removing versioning from ash. `V1_X` are now gone. Versioning had very little benefit in practice, `Entry`, `Instance` and `Device` are now version free. A custom loader can still be implemented. The various traits still remain `DeviceV1_0`.
2018-11-12 04:29:11 +11:00
2020-03-23 06:27:37 +11:00
- `vk.rs` is now generated from `vk.xml`
2018-11-12 04:29:11 +11:00
2020-03-23 06:27:37 +11:00
- Ash now includes all docs inside the `vk.xml`, and are visible in rustdoc.
2018-11-12 04:29:11 +11:00
2020-03-23 06:27:37 +11:00
- `Default` is now implemented for all structs
2018-11-12 04:29:11 +11:00
2020-03-23 06:27:37 +11:00
- There is now a builder pattern
2018-11-12 04:29:11 +11:00
2020-03-23 06:27:37 +11:00
- Handles are now `#[repr(transparent)]`
2018-11-12 04:29:11 +11:00
2020-03-23 06:27:37 +11:00
- Various bug fixes
2018-11-12 04:29:11 +11:00
2020-03-23 06:27:37 +11:00
### 0.18.0
- Fixes arm build => uses libc everywhere. Remove `AlignByteSlice`.
2018-11-12 04:29:11 +11:00
2020-03-23 06:27:37 +11:00
### 0.17.0
2018-11-12 04:29:11 +11:00
2020-03-23 06:27:37 +11:00
- Refactor Align to use vk::DeviceSize.
2018-11-12 04:29:11 +11:00
2020-03-23 06:27:37 +11:00
### 0.16.0
2018-11-12 04:29:11 +11:00
2020-03-23 06:27:37 +11:00
- `map_memory` now returns a void ptr
2018-11-12 04:29:11 +11:00
2020-03-23 06:27:37 +11:00
- `ash::util::Align` is a helper struct that
2017-07-09 17:13:36 +10:00
can write to aligned memory.
2020-03-23 06:27:37 +11:00
2020-05-11 05:14:01 +10:00
[Unreleased]: https://github.com/MaikKlein/ash/compare/0.31.0...HEAD
[0.31.0]: https://github.com/MaikKlein/ash/releases/tag/0.31.0
2020-03-23 06:27:37 +11:00
[0.30.0]: https://github.com/MaikKlein/ash/releases/tag/0.30.0