Struct vulkano::buffer::device_local::DeviceLocalBuffer [] [src]

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

Buffer whose content is in device-local memory.

This buffer type is useful in order to store intermediary data. For example you execute a compute shader that writes to this buffer, then read the content of the buffer in a following compute or graphics pipeline.

The DeviceLocalBuffer will be in device-local memory, unless the device doesn't provide any device-local memory.

Methods

impl<T> DeviceLocalBuffer<T>
[src]

Builds a new buffer. Only allowed for sized data.

impl<T> DeviceLocalBuffer<[T]>
[src]

Builds a new buffer. Can be used for arrays.

impl<T: ?Sized> DeviceLocalBuffer<T>
[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> DeviceLocalBuffer<T, A>
[src]

Returns the queue families this buffer can be used on.

Trait Implementations

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

Formats the value using the given formatter.

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

Returns the device that owns Self.

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

Returns the inner information about this buffer.

Returns the size of the buffer in bytes.

Returns a key that uniquely identifies the range given by offset/size. Read more

Locks the resource for usage on the GPU. Returns an error if the lock can't be acquired. Read more

Locks the resource for usage on the GPU. Supposes that the resource is already locked, and simply increases the lock by one. Read more

Unlocks the resource previously acquired with try_gpu_lock or increase_gpu_lock. Read more

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

Builds a BufferSlice object holding the buffer by reference.

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

Builds a BufferSlice object holding the buffer by value.

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

Returns true if an access to self (as defined by self_offset and self_size) potentially overlaps the same memory as an access to other (as defined by other_offset and other_size). Read more

Returns true if an access to self (as defined by self_offset and self_size) potentially overlaps the same memory as an access to other (as defined by other_first_layer, other_num_layers, other_first_mipmap and other_num_mipmaps). Read more

Shortcut for conflicts_buffer that compares the whole buffer to another.

Shortcut for conflicts_image that compares the whole buffer to a whole image.

Shortcut for conflict_key that grabs the key of the whole buffer.

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

The type of the content.