Struct spirv_std::indirect_command::DrawIndirectCommand
source · #[repr(C)]pub struct DrawIndirectCommand {
pub vertex_count: u32,
pub instance_count: u32,
pub first_vertex: u32,
pub first_instance: u32,
}
Expand description
Structure specifying an indirect drawing command
https://registry.khronos.org/vulkan/specs/1.3-extensions/man/html/VkDrawIndirectCommand.html
Fields§
§vertex_count: u32
vertexCount is the number of vertices to draw.
instance_count: u32
instanceCount is the number of instances to draw.
first_vertex: u32
firstVertex is the index of the first vertex to draw.
first_instance: u32
firstInstance is the instance ID of the first instance to draw.
Trait Implementations§
source§impl Clone for DrawIndirectCommand
impl Clone for DrawIndirectCommand
source§fn clone(&self) -> DrawIndirectCommand
fn clone(&self) -> DrawIndirectCommand
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for DrawIndirectCommand
impl Debug for DrawIndirectCommand
source§impl Default for DrawIndirectCommand
impl Default for DrawIndirectCommand
source§fn default() -> DrawIndirectCommand
fn default() -> DrawIndirectCommand
Returns the “default value” for a type. Read more
impl Copy for DrawIndirectCommand
impl Pod for DrawIndirectCommand
Auto Trait Implementations§
impl Freeze for DrawIndirectCommand
impl RefUnwindSafe for DrawIndirectCommand
impl Send for DrawIndirectCommand
impl Sync for DrawIndirectCommand
impl Unpin for DrawIndirectCommand
impl UnwindSafe for DrawIndirectCommand
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
§type Bits = T
type Bits = T
Self
must have the same layout as the specified Bits
except for
the possible invalid bit patterns being checked during
is_valid_bit_pattern
.source§fn is_valid_bit_pattern(_bits: &T) -> bool
fn is_valid_bit_pattern(_bits: &T) -> bool
If this function returns true, then it must be valid to reinterpret
bits
as &Self
.