From 10148c5e94113ec7ac3f1d0868ca8517166c35a4 Mon Sep 17 00:00:00 2001 From: Rua Date: Sat, 26 Aug 2023 11:26:36 +0200 Subject: [PATCH] #2306 changelog --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index c25fae52..3b7fc666 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -103,6 +103,8 @@ Changes to memory allocation: - `MemoryAlloc::new` no longer returns a `Result`, and doesn't map the `DeviceMemory` automatically anymore. - `MemoryAlloc::mapped_ptr` and `MemoryAlloc::mapped_slice[_mut]` were replaced by `MemoryAlloc::mapped_slice`, which returns a pointer. - `MemoryAlloc::{invalidate, flush}_range` now take a `MappedMemoryRange` as argument. +- Merged `MemoryAllocator::allocate_from_type_unchecked` into `MemoryAllocator::allocate_from_type` and `MemoryAllocator::allocate_unchecked` into `MemoryAllocator::allocate`. +- Replaced `MemoryAllocator::allocate_dedicated_unchecked` with `MemoryAllocator::allocate_dedicated`. Changes to synchronization primitives: - `Event::signaled` is renamed to `is_signaled`, to match the method on `Fence`.