This commit is contained in:
marc0246 2025-02-03 18:03:12 +01:00
parent fbbcee9499
commit 898db92a49
No known key found for this signature in database
GPG Key ID: 689CB88C1090C684
2 changed files with 2 additions and 1 deletions

View File

@ -75,6 +75,7 @@ Changes to buffers:
Changes to images:
- `ImageMemory` is now marked non-exhaustive.
- `ImageMemory::Sparse` no longer has a field for memory requirements, this is now queried directly from the image.
Changes to draw/dispatch commands:
- These are now `unsafe`, as the shader can perform invalid operations outside of Vulkano's control.
@ -128,6 +129,7 @@ Device features:
Vulkan APIs:
- Ability to update existing descriptor sets.
- Support for querying memory requirements directly from the device.
- Support for sparse binding.
Other:
- Partially validated versions of `submit` and `present` commands (called via `QueueGuard`).

View File

@ -8,7 +8,6 @@ Coverage of support for Vulkan core features and extensions in Vulkano, as of th
### Unsupported
- Sparse binding
- `VkAllocationCallbacks`
- Possibly more?