Struct wgpu_types::DispatchIndirectArgs
source · #[repr(C)]pub struct DispatchIndirectArgs {
pub group_size_x: u32,
pub group_size_y: u32,
pub group_size_z: u32,
}
Expand description
Argument buffer layout for dispatch_indirect commands.
Fields§
§group_size_x: u32
X dimension of the grid of workgroups to dispatch.
group_size_y: u32
Y dimension of the grid of workgroups to dispatch.
group_size_z: u32
Z dimension of the grid of workgroups to dispatch.
Trait Implementations§
source§impl Clone for DispatchIndirectArgs
impl Clone for DispatchIndirectArgs
source§fn clone(&self) -> DispatchIndirectArgs
fn clone(&self) -> DispatchIndirectArgs
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 more