From 779d2dc485d5bfd546783efe9e4ba6beabbec001 Mon Sep 17 00:00:00 2001 From: marc0246 <40955683+marc0246@users.noreply.github.com> Date: Tue, 2 Jan 2024 14:08:51 +0100 Subject: [PATCH] #2438 changelog --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 51dd0726..a0bcde7e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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`).