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

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

Prototype for a submission that waits on semaphores.

This prototype can't actually be submitted because it doesn't correspond to anything in Vulkan. However you can convert it into another builder prototype through the Into trait.

Methods

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

[src]

Builds a new empty SubmitSemaphoresWaitBuilder.

[src]

Adds an operation that waits on a semaphore.

The semaphore must be signaled by a previous submission.

[src]

Merges this builder with another builder.

Trait Implementations

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

[src]

Formats the value using the given formatter.

impl<'a> Into<SubmitCommandBufferBuilder<'a>> for SubmitSemaphoresWaitBuilder<'a>
[src]

[src]

Performs the conversion.

impl<'a> Into<SubmitPresentBuilder<'a>> for SubmitSemaphoresWaitBuilder<'a>
[src]

[src]

Performs the conversion.