mirror of
https://github.com/vulkano-rs/vulkano.git
synced 2024-11-25 08:14:20 +00:00
#2227 changelog
This commit is contained in:
parent
9fd6e0ff45
commit
921d0a5887
@ -50,6 +50,9 @@ Changes to render pass objects:
|
||||
- Renamed `LoadOp` and `StoreOp` to `AttachmentLoadOp` and `AttachmentStoreOp` to match the Vulkan names.
|
||||
- In the `single_pass_renderpass` and `ordered_passes_renderpass` macros, the `load` and `store` fields for attachments are renamed to `load_op` and `store_op`, and ordered below the `format` and `samples` fields, to match the fields of the `AttachmentDescription` structure.
|
||||
|
||||
Changes to instances:
|
||||
- `InstanceCreateInfo::enumerate_portability` has been replaced with a more generic `flags` field.
|
||||
|
||||
### Additions
|
||||
|
||||
- Vulkano-shaders: Added a `root_path_env` property to allow loading shaders generated by a build script.
|
||||
@ -62,6 +65,7 @@ Changes to render pass objects:
|
||||
- Support for the `khr_depth_stencil_resolve` extension. `SubpassDescription` now has additional `depth_stencil_resolve_attachment`, `depth_resolve_mode` and `stencil_resolve_mode` fields.
|
||||
- Support for the `khr_separate_depth_stencil_layouts` extension. `AttachmentReference` now has an additional `stencil_layout` field, and `AttachmentDescription` now has additional `stencil_initial_layout` and `stencil_final_layout` fields.
|
||||
- Added `flags` to `RenderPassCreateInfo`, `AttachmentDescription` and `SubpassDescription`.
|
||||
- Support for the `khr_device_group_creation` extension.
|
||||
|
||||
### Bugs fixed
|
||||
|
||||
|
@ -20,6 +20,7 @@ Coverage of support for Vulkan core features and extensions in Vulkano.
|
||||
- [`VK_KHR_16bit_storage`](https://registry.khronos.org/vulkan/specs/1.3-extensions/man/html/VK_KHR_16bit_storage.html)
|
||||
- [`VK_KHR_bind_memory2`](https://registry.khronos.org/vulkan/specs/1.3-extensions/man/html/VK_KHR_bind_memory2.html)
|
||||
- [`VK_KHR_dedicated_allocation`](https://registry.khronos.org/vulkan/specs/1.3-extensions/man/html/VK_KHR_dedicated_allocation.html)
|
||||
- [`VK_KHR_device_group_creation`](https://registry.khronos.org/vulkan/specs/1.3-extensions/man/html/VK_KHR_device_group_creation.html)
|
||||
- [`VK_KHR_get_memory_requirements2`](https://registry.khronos.org/vulkan/specs/1.3-extensions/man/html/VK_KHR_get_memory_requirements2.html)
|
||||
- [`VK_KHR_get_physical_device_properties2`](https://registry.khronos.org/vulkan/specs/1.3-extensions/man/html/VK_KHR_get_physical_device_properties2.html)
|
||||
- [`VK_KHR_external_fence`](https://registry.khronos.org/vulkan/specs/1.3-extensions/man/html/VK_KHR_external_fence.html)
|
||||
@ -48,7 +49,6 @@ Coverage of support for Vulkan core features and extensions in Vulkano.
|
||||
|
||||
- [`VK_KHR_descriptor_update_template`](https://registry.khronos.org/vulkan/specs/1.3-extensions/man/html/VK_KHR_descriptor_update_template.html)
|
||||
- [`VK_KHR_device_group`](https://registry.khronos.org/vulkan/specs/1.3-extensions/man/html/VK_KHR_device_group.html)
|
||||
- [`VK_KHR_device_group_creation`](https://registry.khronos.org/vulkan/specs/1.3-extensions/man/html/VK_KHR_device_group_creation.html)
|
||||
- Group operations, subgroup scope
|
||||
- Protected memory
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user