Struct wgpu_types::DispatchIndirectArgs [−][src]
#[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: u32X dimension of the grid of workgroups to dispatch.
group_size_y: u32Y dimension of the grid of workgroups to dispatch.
group_size_z: u32Z dimension of the grid of workgroups to dispatch.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for DispatchIndirectArgsimpl Send for DispatchIndirectArgsimpl Sync for DispatchIndirectArgsimpl Unpin for DispatchIndirectArgsimpl UnwindSafe for DispatchIndirectArgsBlanket Implementations
Mutably borrows from an owned value. Read more