From b972d6a4d863736c914c3fc8f303b749e38e8a98 Mon Sep 17 00:00:00 2001 From: marc0246 <40955683+marc0246@users.noreply.github.com> Date: Sat, 9 Sep 2023 16:23:49 +0200 Subject: [PATCH] #2317 docs fixes --- vulkano/src/memory/allocator/mod.rs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/vulkano/src/memory/allocator/mod.rs b/vulkano/src/memory/allocator/mod.rs index ae09ed2b28..a7da6699cd 100644 --- a/vulkano/src/memory/allocator/mod.rs +++ b/vulkano/src/memory/allocator/mod.rs @@ -850,12 +850,6 @@ impl StandardMemoryAllocator { /// another block. No `DeviceMemory` is allocated when the allocator is created, the blocks are /// only allocated once they are needed. /// -/// # Locking behavior -/// -/// The allocator never needs to lock while suballocating unless `S` needs to lock. The only time -/// when a pool must be locked is when a new `DeviceMemory` block is allocated for the pool. This -/// means that the allocator is suited to both locking and lock-free (sub)allocation algorithms. -/// /// [memory allocator]: MemoryAllocator /// [suballocate]: Suballocator /// [the `MemoryAllocator` implementation]: Self#impl-MemoryAllocator-for-GenericMemoryAllocator