Struct gpu_alloc::MemoryBlock

source ·
pub struct MemoryBlock<M> { /* private fields */ }
Expand description

Memory block allocated by GpuAllocator.

Implementations§

source§

impl<M> MemoryBlock<M>

source

pub fn memory(&self) -> &M

Returns reference to parent memory object.

source

pub fn offset(&self) -> u64

Returns offset in bytes from start of memory object to start of this block.

source

pub fn size(&self) -> u64

Returns size of this memory block.

source

pub fn props(&self) -> MemoryPropertyFlags

Returns memory property flags for parent memory object.

source

pub fn memory_type(&self) -> u32

Returns index of type of parent memory object.

source

pub unsafe fn map( &mut self, device: &impl MemoryDevice<M>, offset: u64, size: usize ) -> Result<NonNull<u8>, MapError>

Returns pointer to mapped memory range of this block. This blocks becomes mapped.

The user of returned pointer must guarantee that any previously submitted command that writes to this range has completed before the host reads from or writes to that range, and that any previously submitted command that reads from that range has completed before the host writes to that region. If the device memory was allocated without the HOST_COHERENT property flag set, these guarantees must be made for an extended range: the user must round down the start of the range to the nearest multiple of non_coherent_atom_size, and round the end of the range up to the nearest multiple of non_coherent_atom_size.

Panics

This function panics if block is currently mapped.

Safety

block must have been allocated from specified device.

source

pub unsafe fn unmap(&mut self, device: &impl MemoryDevice<M>) -> bool

Unmaps memory range of this block that was previously mapped with Block::map. This block becomes unmapped.

Panics

This function panics if this block is not currently mapped.

Safety

block must have been allocated from specified device.

source

pub unsafe fn write_bytes( &mut self, device: &impl MemoryDevice<M>, offset: u64, data: &[u8] ) -> Result<(), MapError>

Transiently maps block memory range and copies specified data to the mapped memory range.

Panics

This function panics if block is currently mapped.

Safety

block must have been allocated from specified device. The caller must guarantee that any previously submitted command that reads or writes to this range has completed.

source

pub unsafe fn read_bytes( &mut self, device: &impl MemoryDevice<M>, offset: u64, data: &mut [u8] ) -> Result<(), MapError>

Transiently maps block memory range and copies specified data from the mapped memory range.

Panics

This function panics if block is currently mapped.

Safety

block must have been allocated from specified device. The caller must guarantee that any previously submitted command that reads to this range has completed.

Trait Implementations§

source§

impl<M: Debug> Debug for MemoryBlock<M>

source§

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

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

impl<M> Send for MemoryBlock<M>
where M: Send,

source§

impl<M> Sync for MemoryBlock<M>
where M: Sync,

Auto Trait Implementations§

§

impl<M> RefUnwindSafe for MemoryBlock<M>
where M: RefUnwindSafe,

§

impl<M> Unpin for MemoryBlock<M>
where M: Unpin,

§

impl<M> UnwindSafe for MemoryBlock<M>

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>,

§

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>,

§

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.