[][src]Struct vulkano::buffer::cpu_access::CpuAccessibleBuffer

pub struct CpuAccessibleBuffer<T: ?Sized, A = PotentialDedicatedAllocation<StdMemoryPoolAlloc>> { /* fields omitted */ }

Buffer whose content is accessible by the CPU.

Methods

impl<T> CpuAccessibleBuffer<T>[src]

pub fn from_data(
    device: Arc<Device>,
    usage: BufferUsage,
    data: T
) -> Result<Arc<CpuAccessibleBuffer<T>>, DeviceMemoryAllocError> where
    T: Content + 'static, 
[src]

Builds a new buffer with some data in it. Only allowed for sized data.

pub unsafe fn uninitialized(
    device: Arc<Device>,
    usage: BufferUsage
) -> Result<Arc<CpuAccessibleBuffer<T>>, DeviceMemoryAllocError>
[src]

Builds a new uninitialized buffer. Only allowed for sized data.

impl<T> CpuAccessibleBuffer<[T]>[src]

pub fn from_iter<I>(
    device: Arc<Device>,
    usage: BufferUsage,
    data: I
) -> Result<Arc<CpuAccessibleBuffer<[T]>>, DeviceMemoryAllocError> where
    I: ExactSizeIterator<Item = T>,
    T: Content + 'static, 
[src]

Builds a new buffer that contains an array T. The initial data comes from an iterator that produces that list of Ts.

pub unsafe fn uninitialized_array(
    device: Arc<Device>,
    len: usize,
    usage: BufferUsage
) -> Result<Arc<CpuAccessibleBuffer<[T]>>, DeviceMemoryAllocError>
[src]

Builds a new buffer. Can be used for arrays.

impl<T: ?Sized> CpuAccessibleBuffer<T>[src]

pub unsafe fn raw<'a, I>(
    device: Arc<Device>,
    size: usize,
    usage: BufferUsage,
    queue_families: I
) -> Result<Arc<CpuAccessibleBuffer<T>>, DeviceMemoryAllocError> where
    I: IntoIterator<Item = QueueFamily<'a>>, 
[src]

Builds a new buffer without checking the size.

Safety

You must ensure that the size that you pass is correct for T.

impl<T: ?Sized, A> CpuAccessibleBuffer<T, A>[src]

pub fn queue_families(&self) -> Vec<QueueFamily>[src]

Returns the queue families this buffer can be used on.

impl<T: ?Sized, A> CpuAccessibleBuffer<T, A> where
    T: Content + 'static,
    A: MemoryPoolAlloc
[src]

pub fn read(&self) -> Result<ReadLock<T>, ReadLockError>[src]

Locks the buffer in order to read its content from the CPU.

If the buffer is currently used in exclusive mode by the GPU, this function will return an error. Similarly if you called write() on the buffer and haven't dropped the lock, this function will return an error as well.

After this function successfully locks the buffer, any attempt to submit a command buffer that uses it in exclusive mode will fail. You can still submit this buffer for non-exclusive accesses (ie. reads).

pub fn write(&self) -> Result<WriteLock<T>, WriteLockError>[src]

Locks the buffer in order to write its content from the CPU.

If the buffer is currently in use by the GPU, this function will return an error. Similarly if you called read() on the buffer and haven't dropped the lock, this function will return an error as well.

After this function successfully locks the buffer, any attempt to submit a command buffer that uses it and any attempt to call read() will return an error.

Trait Implementations

impl<T: ?Sized, A> BufferAccess for CpuAccessibleBuffer<T, A> where
    T: 'static + Send + Sync
[src]

fn as_buffer_slice(&self) -> BufferSlice<Self::Content, &Self> where
    Self: Sized + TypedBufferAccess
[src]

Builds a BufferSlice object holding the buffer by reference.

fn slice<T>(&self, range: Range<usize>) -> Option<BufferSlice<[T], &Self>> where
    Self: Sized + TypedBufferAccess<Content = [T]>, 
[src]

Builds a BufferSlice object holding part of the buffer by reference. Read more

fn into_buffer_slice(self) -> BufferSlice<Self::Content, Self> where
    Self: Sized + TypedBufferAccess
[src]

Builds a BufferSlice object holding the buffer by value.

fn index<T>(&self, index: usize) -> Option<BufferSlice<[T], &Self>> where
    Self: Sized + TypedBufferAccess<Content = [T]>, 
[src]

Builds a BufferSlice object holding part of the buffer by reference. Read more

impl<T: ?Sized, A> TypedBufferAccess for CpuAccessibleBuffer<T, A> where
    T: 'static + Send + Sync
[src]

type Content = T

The type of the content.

fn len(&self) -> usize where
    Self::Content: Content
[src]

Returns the length of the buffer in number of elements. Read more

impl<T: ?Sized, A> DeviceOwned for CpuAccessibleBuffer<T, A>[src]

impl<T: Debug + ?Sized, A: Debug> Debug for CpuAccessibleBuffer<T, A>[src]

Auto Trait Implementations

impl<T: ?Sized, A> Send for CpuAccessibleBuffer<T, A> where
    A: Send,
    T: Send

impl<T: ?Sized, A> Sync for CpuAccessibleBuffer<T, A> where
    A: Sync,
    T: Sync

Blanket Implementations

impl<T> DeviceOwned for T where
    T: Deref,
    <T as Deref>::Target: DeviceOwned
[src]

impl<T> Content for T[src]

impl<T> From<T> 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> Borrow<T> for T where
    T: ?Sized
[src]

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

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