[−][src]Struct rendy_memory::DynamicAllocator
No-fragmentation allocator. Suitable for any type of small allocations. Every freed block can be reused.
Implementations
impl<B> DynamicAllocator<B> where
B: Backend,
[src]
B: Backend,
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 max_allocation(&self) -> u64
[src]
Maximum allocation size.
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]
impl<B> Send for DynamicAllocator<B> where
B: Backend,
[src]
B: Backend,
impl<B> Sync for DynamicAllocator<B> where
B: Backend,
[src]
B: Backend,
Auto Trait Implementations
impl<B> RefUnwindSafe for DynamicAllocator<B> where
<B as Backend>::Memory: RefUnwindSafe,
<B as Backend>::Memory: RefUnwindSafe,
impl<B> Unpin for DynamicAllocator<B>
impl<B> UnwindSafe for DynamicAllocator<B> where
<B as Backend>::Memory: RefUnwindSafe + UnwindSafe,
<B as Backend>::Memory: RefUnwindSafe + UnwindSafe,
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>,