[][src]Struct nannou::vk::buffer::immutable::ImmutableBuffer

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

Buffer that is written once then read for as long as it is alive.

Methods

impl<T> ImmutableBuffer<T, PotentialDedicatedAllocation<StdMemoryPoolAlloc>> where
    T: ?Sized
[src]

pub fn from_data(
    data: T,
    usage: BufferUsage,
    queue: Arc<Queue>
) -> Result<(Arc<ImmutableBuffer<T, PotentialDedicatedAllocation<StdMemoryPoolAlloc>>>, CommandBufferExecFuture<NowFuture, AutoCommandBuffer<StandardCommandPoolAlloc>>), DeviceMemoryAllocError> where
    T: 'static + Send + Sync
[src]

Builds an ImmutableBuffer from some data.

This function builds a memory-mapped intermediate buffer, writes the data to it, builds a command buffer that copies from this intermediate buffer to the final buffer, and finally submits the command buffer as a future.

This function returns two objects: the newly-created buffer, and a future representing the initial upload operation. In order to be allowed to use the ImmutableBuffer, you must either submit your operation after this future, or execute this future and wait for it to be finished before submitting your own operation.

pub fn from_buffer<B>(
    source: B,
    usage: BufferUsage,
    queue: Arc<Queue>
) -> Result<(Arc<ImmutableBuffer<T, PotentialDedicatedAllocation<StdMemoryPoolAlloc>>>, CommandBufferExecFuture<NowFuture, AutoCommandBuffer<StandardCommandPoolAlloc>>), DeviceMemoryAllocError> where
    B: BufferAccess + TypedBufferAccess<Content = T> + 'static + Clone + Send + Sync,
    T: 'static + Send + Sync
[src]

Builds an ImmutableBuffer that copies its data from another buffer.

This function returns two objects: the newly-created buffer, and a future representing the initial upload operation. In order to be allowed to use the ImmutableBuffer, you must either submit your operation after this future, or execute this future and wait for it to be finished before submitting your own operation.

impl<T> ImmutableBuffer<T, PotentialDedicatedAllocation<StdMemoryPoolAlloc>>[src]

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

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

Returns two things: the buffer, and a special access that should be used for the initial upload to the buffer.

You will get an error if you try to use the buffer before using the initial upload access. However this function doesn't check whether you actually used this initial upload to fill the buffer like you're supposed to do.

You will also get an error if you try to get exclusive access to the final buffer.

Safety

  • The ImmutableBufferInitialization should be used to fill the buffer with some initial data, otherwise the content is undefined.

impl<T> ImmutableBuffer<[T], PotentialDedicatedAllocation<StdMemoryPoolAlloc>>[src]

pub fn from_iter<D>(
    data: D,
    usage: BufferUsage,
    queue: Arc<Queue>
) -> Result<(Arc<ImmutableBuffer<[T], PotentialDedicatedAllocation<StdMemoryPoolAlloc>>>, CommandBufferExecFuture<NowFuture, AutoCommandBuffer<StandardCommandPoolAlloc>>), DeviceMemoryAllocError> where
    D: ExactSizeIterator<Item = T>,
    T: 'static + Send + Sync
[src]

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

Builds a new buffer with uninitialized data. Can be used for arrays.

Returns two things: the buffer, and a special access that should be used for the initial upload to the buffer.

You will get an error if you try to use the buffer before using the initial upload access. However this function doesn't check whether you actually used this initial upload to fill the buffer like you're supposed to do.

You will also get an error if you try to get exclusive access to the final buffer.

Safety

  • The ImmutableBufferInitialization should be used to fill the buffer with some initial data, otherwise the content is undefined.

impl<T> ImmutableBuffer<T, PotentialDedicatedAllocation<StdMemoryPoolAlloc>> where
    T: ?Sized
[src]

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

Builds a new buffer without checking the size and granting free access for the initial upload.

Returns two things: the buffer, and a special access that should be used for the initial upload to the buffer. You will get an error if you try to use the buffer before using the initial upload access. However this function doesn't check whether you used this initial upload to fill the buffer. You will also get an error if you try to get exclusive access to the final buffer.

Safety

  • You must ensure that the size that you pass is correct for T.
  • The ImmutableBufferInitialization should be used to fill the buffer with some initial data.

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

pub fn device(&self) -> &Arc<Device>[src]

Returns the device used to create this buffer.

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

Returns the queue families this buffer can be used on.

Trait Implementations

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

impl<T, A> BufferAccess for ImmutableBuffer<T, A> where
    T: ?Sized
[src]

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

Builds a BufferSlice object holding the buffer by reference.

fn slice<T>(&self, range: Range<usize>) -> Option<BufferSlice<[T], &Self>> where
    Self: 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: TypedBufferAccess
[src]

Builds a BufferSlice object holding the buffer by value.

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

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

impl<T, A> TypedBufferAccess for ImmutableBuffer<T, A> where
    T: ?Sized
[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

Auto Trait Implementations

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

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

Blanket Implementations

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]

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

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

type Content = <<T as Deref>::Target as TypedBufferAccess>::Content

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> Content for T[src]

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

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

Builds a BufferSlice object holding the buffer by reference.

fn slice<T>(&self, range: Range<usize>) -> Option<BufferSlice<[T], &Self>> where
    Self: 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: TypedBufferAccess
[src]

Builds a BufferSlice object holding the buffer by value.

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

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

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

impl<T> Erased for T

impl<S> FromSample<S> for S[src]

impl<T, U> ToSample<U> for T where
    U: FromSample<T>, 
[src]

impl<S, T> Duplex<S> for T where
    T: FromSample<S> + ToSample<S>, 
[src]

impl<T> SetParameter for T

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 

Sets value as a parameter of self.

impl<T> SetParameter for T

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 

Sets value as a parameter of self.