Struct wgpu_core::device::alloc::MemoryBlock[][src]

pub struct MemoryBlock<B: Backend>(_);

Implementations

impl<B: Backend> MemoryBlock<B>[src]

pub fn bind_buffer(
    &self,
    device: &B::Device,
    buffer: &mut B::Buffer
) -> Result<(), DeviceError>
[src]

pub fn bind_image(
    &self,
    device: &B::Device,
    image: &mut B::Image
) -> Result<(), DeviceError>
[src]

pub fn is_coherent(&self) -> bool[src]

pub fn map(
    &mut self,
    device: &B::Device,
    inner_offset: BufferAddress,
    size: BufferAddress
) -> Result<NonNull<u8>, DeviceError>
[src]

pub fn unmap(&mut self, device: &B::Device)[src]

pub fn write_bytes(
    &mut self,
    device: &B::Device,
    inner_offset: BufferAddress,
    data: &[u8]
) -> Result<(), DeviceError>
[src]

pub fn read_bytes(
    &mut self,
    device: &B::Device,
    inner_offset: BufferAddress,
    data: &mut [u8]
) -> Result<(), DeviceError>
[src]

pub fn flush_range(
    &self,
    device: &B::Device,
    inner_offset: BufferAddress,
    size: Option<BufferAddress>
) -> Result<(), DeviceError>
[src]

pub fn invalidate_range(
    &self,
    device: &B::Device,
    inner_offset: BufferAddress,
    size: Option<BufferAddress>
) -> Result<(), DeviceError>
[src]

Trait Implementations

impl<B: Debug + Backend> Debug for MemoryBlock<B> where
    B::Memory: Debug
[src]

Auto Trait Implementations

impl<B> RefUnwindSafe for MemoryBlock<B> where
    <B as Backend>::Memory: RefUnwindSafe
[src]

impl<B> Send for MemoryBlock<B>[src]

impl<B> Sync for MemoryBlock<B>[src]

impl<B> Unpin for MemoryBlock<B> where
    <B as Backend>::Memory: Unpin
[src]

impl<B> UnwindSafe for MemoryBlock<B> where
    <B as Backend>::Memory: RefUnwindSafe + UnwindSafe
[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Downcast<T> for T

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Upcast<T> for T