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