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

pub struct Submit<L> {
    // some fields omitted
}

Methods

impl Submit<()>
[src]

Builds an empty submission list.

impl<L> Submit<L> where L: SubmitList
[src]

Adds a command buffer to submit to the list.

In the Vulkan API, a submission is divided into batches that each contain one or more command buffers. Vulkano will automatically determine which command buffers can be grouped into the same batch.

Submits the list of command buffers.

Trait Implementations

impl<L: Clone> Clone for Submit<L>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<L: Copy> Copy for Submit<L>
[src]

impl<L: Debug> Debug for Submit<L>
[src]

Formats the value using the given formatter.