LinearAllocator

Struct LinearAllocator 

Source
pub struct LinearAllocator<B: Backend> { /* private fields */ }
Expand description

The LinearAllocator is best suited for short-lived allocations. The allocation strategy has minimal overhead and the implementation is fast. But holding a single block will completely stop memory recycling.

The linear allocator will internally create multiple lines. Each line is a gfx_hal::Backend::Memory from which multiple LinearBlocks are linearly allocated.

A new line is created if there is insufficient space to create a LinearBlock from the current line. New lines are created from scratch or taken from a pool of previously used lines. When lines have no allocated LinearBlocks remaining they are moved to a pool to be reused. This pool of unused lines is freed only when LinearAllocator::clear is called.

Implementations§

Source§

impl<B: Backend> LinearAllocator<B>

Source

pub fn new( 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 config.

Source

pub fn max_allocation(&self) -> Size

Maximum allocation size.

Source

pub fn clear(&mut self, device: &B::Device) -> Size

Perform full cleanup of the allocated memory.

Trait Implementations§

Source§

impl<B: Backend> Allocator<B> for LinearAllocator<B>

Source§

const KIND: Kind = Kind::Linear

Allocator kind.
Source§

type Block = LinearBlock<B>

Block type returned by allocator.
Source§

fn alloc( &mut self, device: &B::Device, size: Size, align: Size, ) -> Result<(LinearBlock<B>, Size), AllocationError>

Allocate block of memory. On success returns allocated block and amount of memory consumed from device.
Source§

fn free(&mut self, device: &B::Device, block: Self::Block) -> Size

Free block of memory. Returns amount of memory returned to the device.
Source§

impl<B: Debug + Backend> Debug for LinearAllocator<B>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<B: Backend> Drop for LinearAllocator<B>

Source§

fn drop(&mut self)

Executes the destructor for this type. Read more

Auto Trait Implementations§

§

impl<B> Freeze for LinearAllocator<B>

§

impl<B> RefUnwindSafe for LinearAllocator<B>
where <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,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.