Struct vulkano::command_buffer::PrimaryCommandBufferBuilderInlineDraw [] [src]

pub struct PrimaryCommandBufferBuilderInlineDraw<P = Arc<StandardCommandPool>> where P: CommandPool { /* fields omitted */ }

Object that you obtain when calling draw_inline or next_subpass_inline.

Methods

impl<P> PrimaryCommandBufferBuilderInlineDraw<P> where P: CommandPool
[src]

Calls vkCmdDraw.

Calls vkCmdDrawIndexed.

Switches to the next subpass of the current renderpass.

This function is similar to draw_inline on the builder.

Panic

  • Panics if no more subpasses remain.

Switches to the next subpass of the current renderpass.

This function is similar to draw_secondary on the builder.

Panic

  • Panics if no more subpasses remain.

Finish drawing this renderpass and get back the builder.

Panic

  • Panics if not at the last subpass.