#[repr(C)]pub struct DrawMeshTasksIndirectCommandEXT {
pub group_count_x: u32,
pub group_count_y: u32,
pub group_count_z: u32,
}
Expand description
Structure specifying a mesh tasks draw indirect command
Fields§
§group_count_x: u32
groupCountX is the number of local workgroups to dispatch in the X dimension.
group_count_y: u32
groupCountY is the number of local workgroups to dispatch in the Y dimension.
group_count_z: u32
groupCountZ is the number of local workgroups to dispatch in the Z dimension.
Trait Implementations§
source§impl Clone for DrawMeshTasksIndirectCommandEXT
impl Clone for DrawMeshTasksIndirectCommandEXT
source§fn clone(&self) -> DrawMeshTasksIndirectCommandEXT
fn clone(&self) -> DrawMeshTasksIndirectCommandEXT
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 Default for DrawMeshTasksIndirectCommandEXT
impl Default for DrawMeshTasksIndirectCommandEXT
source§fn default() -> DrawMeshTasksIndirectCommandEXT
fn default() -> DrawMeshTasksIndirectCommandEXT
Returns the “default value” for a type. Read more
source§impl From<DrawMeshTasksIndirectCommandEXT> for UVec3
impl From<DrawMeshTasksIndirectCommandEXT> for UVec3
source§fn from(v: DrawMeshTasksIndirectCommandEXT) -> Self
fn from(v: DrawMeshTasksIndirectCommandEXT) -> Self
Converts to this type from the input type.
source§impl From<UVec3> for DrawMeshTasksIndirectCommandEXT
impl From<UVec3> for DrawMeshTasksIndirectCommandEXT
impl Copy for DrawMeshTasksIndirectCommandEXT
impl Pod for DrawMeshTasksIndirectCommandEXT
Auto Trait Implementations§
impl Freeze for DrawMeshTasksIndirectCommandEXT
impl RefUnwindSafe for DrawMeshTasksIndirectCommandEXT
impl Send for DrawMeshTasksIndirectCommandEXT
impl Sync for DrawMeshTasksIndirectCommandEXT
impl Unpin for DrawMeshTasksIndirectCommandEXT
impl UnwindSafe for DrawMeshTasksIndirectCommandEXT
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
.