Struct vulkano::command_buffer::submit::SubmitBindSparseBatchBuilder[][src]

pub struct SubmitBindSparseBatchBuilder<'a> { /* fields omitted */ }

A single batch of a sparse bind operation.

Implementations

impl<'a> SubmitBindSparseBatchBuilder<'a>[src]

pub fn new() -> SubmitBindSparseBatchBuilder<'a>[src]

Builds a new empty SubmitBindSparseBatchBuilder.

pub fn add_buffer(&mut self, cmd: SubmitBindSparseBufferBindBuilder<'a>)[src]

Adds an operation that binds memory to a buffer.

pub fn add_image_opaque(
    &mut self,
    cmd: SubmitBindSparseImageOpaqueBindBuilder<'a>
)
[src]

Adds an operation that binds memory to an opaque image.

pub fn add_image(&mut self, cmd: SubmitBindSparseImageBindBuilder<'a>)[src]

Adds an operation that binds memory to an image.

pub unsafe fn add_wait_semaphore(&mut self, semaphore: &'a Semaphore)[src]

Adds a semaphore to be waited upon before the sparse binding is executed.

Safety

  • If you submit this builder, the semaphore must be kept alive until you are guaranteed that the GPU has at least started executing the operation.

  • If you submit this builder, no other queue must be waiting on these semaphores. In other words, each semaphore signal can only correspond to one semaphore wait.

  • If you submit this builder, the semaphores must be signaled when the queue execution reaches this submission, or there must be one or more submissions in queues that are going to signal these semaphores. In other words, you must not block the queue with semaphores that can’t get signaled.

  • The fence, buffers, images, and semaphores must all belong to the same device.

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

Returns the number of semaphores to signal.

In other words, this is the number of times add_signal_semaphore has been called.

pub unsafe fn add_signal_semaphore(&mut self, semaphore: &'a Semaphore)[src]

Adds a semaphore that is going to be signaled at the end of the submission.

Safety

  • If you submit this builder, the semaphore must be kept alive until you are guaranteed that the GPU has finished executing this submission.

  • The semaphore must be in the unsignaled state when queue execution reaches this submission.

  • The fence, buffers, images, and semaphores must all belong to the same device.

Auto Trait Implementations

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, 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.