From dd2918f12e10cb3dce0191ba12b5cdefe9df973b Mon Sep 17 00:00:00 2001 From: Rua Date: Sat, 9 Dec 2023 12:27:14 +0100 Subject: [PATCH] #2421 changelog --- CHANGELOG.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8ce040ad..8ae05ae8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,8 +16,11 @@ ### Breaking changes Changes to command buffers: -- `AutoCommandBufferBuilder` and `UnsafeCommandBufferBuilder` now take an `Arc` on construction. -- `AutoCommandBufferBuilder`, `PrimaryAutoCommandBuffer`, `SecondaryAutoCommandBuffer`, `UnsafeCommandBufferBuilder` and `UnsafeCommandBuffer` no longer have a type parameter for the type of allocator. +- Renamed `AutoCommandBufferBuilder` to `RecordingCommandBuffer` and `AutoCommandBufferBuilder::build` to `end`. +- Renamed `UnsafeCommandBufferBuilder` to `RawRecordingCommandBuffer` and `UnsafeCommandBufferBuilder::build` to `end`. +- Renamed `UnsafeCommandBuffer` to `RawCommandBuffer`. +- `RecordingCommandBuffer` and `RawRecordingCommandBuffer` now take an `Arc` on construction. +- `RecordingCommandBuffer`, `PrimaryAutoCommandBuffer`, `SecondaryAutoCommandBuffer`, `RawRecordingCommandBuffer` and `RawCommandBuffer` no longer have a type parameter for the type of allocator. - The `PrimaryCommandBufferAbstract` and `SecondaryCommandBufferAbstract` traits were removed. Changes to command buffer allocation: