#[repr(C)]pub struct ScatterAuxGpu {
pub path_lo: u32,
pub path_hi: u32,
pub face: u32,
pub _pad: u32,
}Expand description
One realize-batch chunk’s scatter aux entry (std430, 16 bytes): the chunk’s
quadtree path split into two words + its face. Parallel to the ChunkGpu
batch (same index), which already carries slot/level/frame/bary.
Fields§
§path_lo: u32§path_hi: u32§face: u32§_pad: u32Trait Implementations§
Source§impl Clone for ScatterAuxGpu
impl Clone for ScatterAuxGpu
Source§fn clone(&self) -> ScatterAuxGpu
fn clone(&self) -> ScatterAuxGpu
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ScatterAuxGpu
impl Debug for ScatterAuxGpu
Source§impl PartialEq for ScatterAuxGpu
impl PartialEq for ScatterAuxGpu
Source§fn eq(&self, other: &ScatterAuxGpu) -> bool
fn eq(&self, other: &ScatterAuxGpu) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ScatterAuxGpu
impl Pod for ScatterAuxGpu
impl StructuralPartialEq for ScatterAuxGpu
Auto Trait Implementations§
impl Freeze for ScatterAuxGpu
impl RefUnwindSafe for ScatterAuxGpu
impl Send for ScatterAuxGpu
impl Sync for ScatterAuxGpu
impl Unpin for ScatterAuxGpu
impl UnsafeUnpin for ScatterAuxGpu
impl UnwindSafe for ScatterAuxGpu
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
§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.§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.