[−][src]Struct rendy_memory::DynamicAllocator
Low-fragmentation allocator.
Suitable for any type of small allocations.
Have up to block_size_granularity - 1 memory overhead.
Every freed block can be recycled independently.
Memory objects can be returned to the system if whole memory object become unused (not implemented yet).
Methods
impl<B> DynamicAllocator<B> where
B: Backend, [src]
B: Backend,
pub fn max_allocation(&self) -> u64[src]
Maximum allocation size.
pub fn new(
memory_type: MemoryTypeId,
memory_properties: Properties,
config: DynamicConfig
) -> Self[src]
memory_type: MemoryTypeId,
memory_properties: Properties,
config: DynamicConfig
) -> Self
Create new DynamicAllocator
for memory_type with memory_properties specified,
with DynamicConfig provided.
pub fn dispose(self)[src]
Perform full cleanup of the memory allocated.
Trait Implementations
impl<B> Allocator<B> for DynamicAllocator<B> where
B: Backend, [src]
B: Backend,
type Block = DynamicBlock<B>
Block type returned by allocator.
fn kind() -> Kind[src]
fn alloc(
&mut self,
device: &B::Device,
size: u64,
align: u64
) -> Result<(DynamicBlock<B>, u64), AllocationError>[src]
&mut self,
device: &B::Device,
size: u64,
align: u64
) -> Result<(DynamicBlock<B>, u64), AllocationError>
fn free(&mut self, device: &B::Device, block: DynamicBlock<B>) -> u64[src]
impl<B: Debug + Backend> Debug for DynamicAllocator<B>[src]
Auto Trait Implementations
impl<B> Send for DynamicAllocator<B>
impl<B> Sync for DynamicAllocator<B>
Blanket Implementations
impl<T, U> Into for T where
U: From<T>, [src]
U: From<T>,
impl<T> From for T[src]
impl<T, U> TryFrom for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T> Borrow for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,