This commit is contained in:
marc0246 2024-01-02 14:08:51 +01:00
parent 9e82527698
commit 779d2dc485
No known key found for this signature in database
GPG Key ID: 689CB88C1090C684

View File

@ -69,6 +69,12 @@ Changes to draw/dispatch commands:
Changes to pipelines:
- `GraphicsPipeline::input_assembly_state` returns an option now.
Changes to queries:
- `QueryType` is now a regular Vulkan enum like others in Vulkano.
- The `QueryType::result_len` method is moved to `QueryPool`, and now takes result flags into account.
- `QueryPoolCreateInfo` now has a `pipeline_statistics` field to specify the pipeline statistics flags.
- The `CommandBufferInheritanceInfo::query_statistic_flags` field is renamed to `pipeline_statistics` to match Vulkan.
### Additions
- Partially validated versions of `submit` and `present` commands (called via `QueueGuard`).