This commit is contained in:
Rua 2023-09-28 11:06:48 +02:00 committed by GitHub
parent b49476036c
commit 56b051c954
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -117,6 +117,7 @@ Changes to memory allocation:
- Replaced `MemoryAllocator::allocate_dedicated_unchecked` with `MemoryAllocator::allocate_dedicated`. - Replaced `MemoryAllocator::allocate_dedicated_unchecked` with `MemoryAllocator::allocate_dedicated`.
- `FreeListAllocator`, `BuddyAllocator` and `BumpAllocator` are no longer `Sync`. - `FreeListAllocator`, `BuddyAllocator` and `BumpAllocator` are no longer `Sync`.
- `GenericMemoryAllocatorCreateInfo::block_sizes` now represents a block size per memory type, instead of per memory heap, to allow for a more fine-grained configuration. - `GenericMemoryAllocatorCreateInfo::block_sizes` now represents a block size per memory type, instead of per memory heap, to allow for a more fine-grained configuration.
- Merged `GenericMemoryAllocator::new_unchecked` into `GenericMemoryAllocator::new`.
Changes to synchronization primitives: Changes to synchronization primitives:
- `Event::signaled` is renamed to `is_signaled`, to match the method on `Fence`. - `Event::signaled` is renamed to `is_signaled`, to match the method on `Fence`.