Struct wgpu::util::DrawIndexedIndirect
source · [−]#[repr(C)]pub struct DrawIndexedIndirect {
pub vertex_count: u32,
pub instance_count: u32,
pub base_index: u32,
pub vertex_offset: i32,
pub base_instance: u32,
}Expand description
The structure expected in indirect_buffer for RenderEncoder::draw_indexed_indirect.
Fields
vertex_count: u32The number of vertices to draw.
instance_count: u32The number of instances to draw.
base_index: u32The base index within the index buffer.
vertex_offset: i32The value added to the vertex index before indexing into the vertex buffer.
base_instance: u32The instance ID of the first instance to draw.
Has to be 0, unless Features::INDIRECT_FIRST_INSTANCE is enabled.
Implementations
Trait Implementations
sourceimpl Clone for DrawIndexedIndirect
impl Clone for DrawIndexedIndirect
sourcefn clone(&self) -> DrawIndexedIndirect
fn clone(&self) -> DrawIndexedIndirect
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for DrawIndexedIndirect
impl Debug for DrawIndexedIndirect
sourceimpl Default for DrawIndexedIndirect
impl Default for DrawIndexedIndirect
sourcefn default() -> DrawIndexedIndirect
fn default() -> DrawIndexedIndirect
Returns the “default value” for a type. Read more
impl Copy for DrawIndexedIndirect
Auto Trait Implementations
impl RefUnwindSafe for DrawIndexedIndirect
impl Send for DrawIndexedIndirect
impl Sync for DrawIndexedIndirect
impl Unpin for DrawIndexedIndirect
impl UnwindSafe for DrawIndexedIndirect
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
