Struct vulkano::buffer::BufferSlice[][src]

pub struct BufferSlice<T: ?Sized, B> { /* fields omitted */ }

A subpart of a buffer.

This object doesn’t correspond to any Vulkan object. It exists for API convenience.

Example

Creating a slice:

use vulkano::buffer::BufferSlice;
let _slice = BufferSlice::from(&buffer);

Selecting a slice of a buffer that contains [T]:

use vulkano::buffer::BufferSlice;
let _slice = BufferSlice::from(&buffer).slice(12 .. 14).unwrap();

Implementations

impl<T: ?Sized, B> BufferSlice<T, B>[src]

pub fn from_typed_buffer_access(r: B) -> BufferSlice<T, B> where
    B: TypedBufferAccess<Content = T>, 
[src]

pub fn buffer(&self) -> &B[src]

Returns the buffer that this slice belongs to.

pub fn offset(&self) -> usize[src]

Returns the offset of that slice within the buffer.

pub fn size(&self) -> usize[src]

Returns the size of that slice in bytes.

pub unsafe fn slice_custom<F, R: ?Sized>(self, f: F) -> BufferSlice<R, B> where
    F: for<'r> FnOnce(&'r T) -> &'r R, 
[src]

Builds a slice that contains an element from inside the buffer.

This method builds an object that represents a slice of the buffer. No actual operation is performed.

Example

TODO

Safety

The object whose reference is passed to the closure is uninitialized. Therefore you must not access the content of the object.

You must return a reference to an element from the parameter. The closure must not panic.

pub unsafe fn reinterpret<R: ?Sized>(self) -> BufferSlice<R, B>[src]

Changes the T generic parameter of the BufferSlice to the desired type. This can be useful when you have a buffer with various types of data and want to create a typed slice of a region that contains a single type of data.

Example

let blob_slice: BufferSlice<[u8], Arc<ImmutableBuffer<[u8]>>> = return;
let vertex_slice: BufferSlice<[VertexImpl], Arc<ImmutableBuffer<[u8]>>> = unsafe {
    blob_slice.reinterpret::<[VertexImpl]>()
};

Safety

Correct offset and size must be ensured before using this BufferSlice on the device. See BufferSlice::slice for adjusting these properties.

impl<T, B> BufferSlice<[T], B>[src]

pub fn len(&self) -> usize[src]

Returns the number of elements in this slice.

pub fn index(self, index: usize) -> Option<BufferSlice<T, B>>[src]

Reduces the slice to just one element of the array.

Returns None if out of range.

pub fn slice(self, range: Range<usize>) -> Option<BufferSlice<[T], B>>[src]

Reduces the slice to just a range of the array.

Returns None if out of range.

Trait Implementations

impl<T: ?Sized, B> BufferAccess for BufferSlice<T, B> where
    B: BufferAccess
[src]

fn inner(&self) -> BufferInner<'_>[src]

Returns the inner information about this buffer.

fn size(&self) -> usize[src]

Returns the size of the buffer in bytes.

fn conflicts_buffer(&self, other: &dyn BufferAccess) -> bool[src]

Returns true if an access to self potentially overlaps the same memory as an access to other. Read more

fn conflicts_image(&self, other: &dyn ImageAccess) -> bool[src]

Returns true if an access to self potentially overlaps the same memory as an access to other. Read more

fn conflict_key(&self) -> (u64, usize)[src]

Returns a key that uniquely identifies the buffer. Two buffers or images that potentially overlap in memory must return the same key. Read more

fn try_gpu_lock(
    &self,
    exclusive_access: bool,
    queue: &Queue
) -> Result<(), AccessError>
[src]

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

unsafe fn increase_gpu_lock(&self)[src]

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

unsafe fn unlock(&self)[src]

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

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

fn raw_device_address(
    &self
) -> Result<NonZeroU64, DeviceAddressUsageNotEnabledError>
[src]

Gets the device address for this buffer. Read more

impl<T: ?Sized, B> Clone for BufferSlice<T, B> where
    B: Clone
[src]

fn clone(&self) -> Self[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<T: ?Sized, B> DeviceOwned for BufferSlice<T, B> where
    B: DeviceOwned
[src]

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

Returns the device that owns Self.

impl<T, B> From<BufferSlice<T, B>> for BufferSlice<[T], B>[src]

fn from(r: BufferSlice<T, B>) -> BufferSlice<[T], B>[src]

Performs the conversion.

impl<T: ?Sized, B> Hash for BufferSlice<T, B> where
    B: BufferAccess
[src]

fn hash<H: Hasher>(&self, state: &mut H)[src]

Feeds this value into the given Hasher. Read more

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given Hasher. Read more

impl<T: ?Sized, B> PartialEq<BufferSlice<T, B>> for BufferSlice<T, B> where
    B: BufferAccess
[src]

fn eq(&self, other: &Self) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl<T: ?Sized, B> TypedBufferAccess for BufferSlice<T, B> where
    B: BufferAccess
[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, B> Eq for BufferSlice<T, B> where
    B: BufferAccess
[src]

Auto Trait Implementations

impl<T: ?Sized, B> RefUnwindSafe for BufferSlice<T, B> where
    B: RefUnwindSafe,
    T: RefUnwindSafe

impl<T: ?Sized, B> Send for BufferSlice<T, B> where
    B: Send,
    T: Send

impl<T: ?Sized, B> Sync for BufferSlice<T, B> where
    B: Sync,
    T: Sync

impl<T: ?Sized, B> Unpin for BufferSlice<T, B> where
    B: Unpin,
    T: Unpin

impl<T: ?Sized, B> UnwindSafe for BufferSlice<T, B> where
    B: UnwindSafe,
    T: UnwindSafe

Blanket Implementations

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

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

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

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

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

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> Content for T[src]

pub fn ref_from_ptr(*mut c_void, usize) -> Option<*mut T>[src]

Builds a pointer to this type from a raw pointer.

pub fn is_size_suitable(usize) -> bool[src]

Returns true if the size is suitable to store a type like this.

pub fn indiv_size() -> usize[src]

Returns the size of an individual element.

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

pub fn from(t: T) -> T[src]

Performs the conversion.

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

pub fn into(self) -> U[src]

Performs the conversion.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

Creates owned data from borrowed data, usually by cloning. Read more

pub fn clone_into(&self, target: &mut T)[src]

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

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.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

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.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.