From b02c2de083de998478dedd6c6da6bd5399dbc515 Mon Sep 17 00:00:00 2001 From: marc0246 <40955683+marc0246@users.noreply.github.com> Date: Fri, 4 Aug 2023 22:04:49 +0200 Subject: [PATCH] #2271 changelog --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index faefa236a0..628f56865f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -81,6 +81,7 @@ Changes to pipeline caches: Changes to `Swapchain`: - Swapchain creation no longer returns an error when the swapchain extent doesn't match the current surface extent. This requirement is ill-defined in the spec, as detailed here: [TOCTOU race condition on minImageExtent/maxImageExtent?](https://github.com/KhronosGroup/Vulkan-Docs/issues/1144). - Renamed `acquire_full_screen_exclusive` and `release_full_screen_exclusive` to `acquire_full_screen_exclusive_mode` and `release_full_screen_exclusive_mode` to match the Vulkan names. +- `acquire_next_image` and `wait_for_present` now return `Validated` as their error type. Changes to samplers: - The `sampler` module is now a submodule of `image`. @@ -104,6 +105,9 @@ Changes to synchronization primitives: Changes to queries: - `Query` and `QueriesRange` are removed. The `get_results` method is moved to `QueryPool` directly. +Changes to futures: +- `FlushError` is replaced with `Validated`. + ### Additions - Vulkano-shaders: Added a `root_path_env` property to allow loading shaders generated by a build script.