logo
pub struct SubmitPresentBuilder<'a> { /* private fields */ }
Expand description

Prototype for a submission that presents a swapchain on the screen.

Implementations

Builds a new empty SubmitPresentBuilder.

Adds a semaphore to be waited upon before the presents are executed.

Safety
  • If you submit this builder, the semaphore must be kept alive until you are guaranteed that the GPU has presented the swapchains.

  • 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 swapchains and semaphores must all belong to the same device.

Adds an image of a swapchain to be presented.

Allows to specify a present region. Areas outside the present region can be ignored by the Vulkan implementation for optimizations purposes.

If VK_KHR_incremental_present is not enabled, the present_region parameter is ignored.

Safety
  • If you submit this builder, the swapchain must be kept alive until you are guaranteed that the GPU has finished presenting.

  • The swapchains and semaphores must all belong to the same device.

Submits the command. Calls vkQueuePresentKHR.

Panic

Panics if no swapchain image has been added to the builder.

Trait Implementations

Formats the value using the given formatter. Read more

Performs the conversion.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.