Struct vulkano::command_buffer::std::execute::ExecuteCommandCb [] [src]

pub struct ExecuteCommandCb<Cb, L> where Cb: CommandBuffer, L: CommandBuffer { /* fields omitted */ }

Wraps around a command buffer and adds an execute command at the end of it.

Trait Implementations

impl<Cb, L> CommandBuffer for ExecuteCommandCb<Cb, L> where Cb: CommandBuffer, L: CommandBuffer
[src]

Type of the pool that was used to allocate the command buffer.

Iterator that returns the list of semaphores to wait upon before the command buffer is submitted. Read more

Iterator that returns the list of semaphores to signal after the command buffer has finished execution. Read more

Returns the inner object.

Called slightly before the command buffer is submitted. Signals the command buffers that it is going to be submitted on the given queue. The function must return the list of semaphores to wait upon and transitions to perform. Read more

Submits the command buffer. Read more