From 015b4cda29be5f122d8b9b0628660415454b481a Mon Sep 17 00:00:00 2001 From: Rua Date: Sat, 29 Oct 2022 19:34:49 +0200 Subject: [PATCH] #2053 changelog --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3449845ef0..3492e10991 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -96,6 +96,8 @@ Changes to memory allocation: - Added `MemoryAlloc`, `AllocationCreateInfo`, `AllocationCreationError`, `MemoryUsage`, `MemoryAllocatePreference`, `MemoryTypeFilter`, `SuballocationCreateInfo` and `SuballocationCreationError`. - Added a `flags` field to `BufferCreateInfo`. This contains no flags yet, but will in the future. - Added the `disjoint` flag to `ImageCreateFlags`. This flag is used in combination with multi-planar images, to bind separate memory to each plane of the image. It is not yet supported for the higher-level image types. +- Added `StandardCommandBufferAllocatorCreateInfo`. +- Added `StandardCommandBufferAllocator::{try_reset_pool, clear}`. ### Bugs fixed - [#2004](https://github.com/vulkano-rs/vulkano/issues/2004): A swapchain image could be presented without being acquired.