[−][src]Struct gfx_memory::LinearAllocator
Linear allocator that return memory from chunk sequentially. It keeps only number of bytes allocated from each chunk. Once chunk is exhausted it is placed into list. When all blocks allocated from head of that list are freed, head is freed as well.
This allocator suites best short-lived types of allocations. Allocation strategy requires minimal overhead and implementation is fast. But holding single block will completely stop memory recycling.
Methods
impl<B: Backend> LinearAllocator<B>
[src]
pub fn new(
memory_type: MemoryTypeId,
memory_properties: Properties,
config: &LinearConfig,
non_coherent_atom_size: Size
) -> Self
[src]
memory_type: MemoryTypeId,
memory_properties: Properties,
config: &LinearConfig,
non_coherent_atom_size: Size
) -> Self
Create new LinearAllocator
for memory_type
with memory_properties
specified,
with LinearConfig
provided.
pub fn max_allocation(&self) -> Size
[src]
Maximum allocation size.
pub fn clear(&mut self, device: &B::Device)
[src]
Perform full cleanup of the memory allocated.
Trait Implementations
impl<B: Backend> Allocator<B> for LinearAllocator<B>
[src]
type Block = LinearBlock<B>
Block type returned by allocator.
const KIND: Kind
[src]
fn alloc(
&mut self,
device: &B::Device,
size: Size,
align: Size
) -> Result<(LinearBlock<B>, Size), AllocationError>
[src]
&mut self,
device: &B::Device,
size: Size,
align: Size
) -> Result<(LinearBlock<B>, Size), AllocationError>
fn free(&mut self, device: &B::Device, block: Self::Block) -> Size
[src]
impl<B: Debug + Backend> Debug for LinearAllocator<B>
[src]
impl<B: Backend> Drop for LinearAllocator<B>
[src]
Auto Trait Implementations
impl<B> RefUnwindSafe for LinearAllocator<B> where
<B as Backend>::Memory: RefUnwindSafe,
<B as Backend>::Memory: RefUnwindSafe,
impl<B> Send for LinearAllocator<B>
impl<B> Sync for LinearAllocator<B>
impl<B> Unpin for LinearAllocator<B>
impl<B> UnwindSafe for LinearAllocator<B> where
<B as Backend>::Memory: RefUnwindSafe,
<B as Backend>::Memory: RefUnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> 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, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,