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

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

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

Methods

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

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.

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

impl<'a> Debug for SubmitPresentBuilder<'a>
[src]

Formats the value using the given formatter.