Struct ash::vk::DrawIndirectCommandBuilder
source · #[repr(transparent)]pub struct DrawIndirectCommandBuilder<'a> { /* private fields */ }
Implementations§
source§impl<'a> DrawIndirectCommandBuilder<'a>
impl<'a> DrawIndirectCommandBuilder<'a>
pub fn vertex_count(self, vertex_count: u32) -> Self
pub fn instance_count(self, instance_count: u32) -> Self
pub fn first_vertex(self, first_vertex: u32) -> Self
pub fn first_instance(self, first_instance: u32) -> Self
sourcepub fn build(self) -> DrawIndirectCommand
pub fn build(self) -> DrawIndirectCommand
Calling build will discard all the lifetime information. Only call this if
necessary! Builders implement Deref
targeting their corresponding Vulkan struct,
so references to builders can be passed directly to Vulkan functions.