Struct spirv_std::arch::SubgroupMask
source · #[repr(transparent)]pub struct SubgroupMask(pub UVec4);
Expand description
SubgroupMask
is a glam::UVec4
representing a bitmask of all invocations within a subgroup.
Mostly used in group ballot operations.
Tuple Fields§
§0: UVec4
Trait Implementations§
source§impl Clone for SubgroupMask
impl Clone for SubgroupMask
source§fn clone(&self) -> SubgroupMask
fn clone(&self) -> SubgroupMask
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 SubgroupMask
impl Default for SubgroupMask
source§fn default() -> SubgroupMask
fn default() -> SubgroupMask
Returns the “default value” for a type. Read more
source§impl PartialEq for SubgroupMask
impl PartialEq for SubgroupMask
source§fn eq(&self, other: &SubgroupMask) -> bool
fn eq(&self, other: &SubgroupMask) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for SubgroupMask
impl Eq for SubgroupMask
impl Pod for SubgroupMask
impl StructuralPartialEq for SubgroupMask
Auto Trait Implementations§
impl Freeze for SubgroupMask
impl RefUnwindSafe for SubgroupMask
impl Send for SubgroupMask
impl Sync for SubgroupMask
impl Unpin for SubgroupMask
impl UnwindSafe for SubgroupMask
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
.