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: u32
The number of vertices to draw.
instance_count: u32
The number of instances to draw.
base_index: u32
The base index within the index buffer.
vertex_offset: i32
The value added to the vertex index before indexing into the vertex buffer.
base_instance: u32
The 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 more
sourceimpl 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 T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more