#[repr(C)]pub struct AccelerationStructureBuildRangeInfo {
pub primitive_count: u32,
pub primitive_offset: u32,
pub first_vertex: u32,
pub transform_offset: u32,
}Expand description
Counts and offsets for an acceleration structure build operation.
Fields§
§primitive_count: u32The number of primitives.
The default value is 0.
primitive_offset: u32The offset (in bytes) into the buffer holding geometry data, to where the first primitive is stored.
The default value is 0.
first_vertex: u32The index of the first vertex to build from.
This is used only for triangle geometries.
The default value is 0.
transform_offset: u32The offset (in bytes) into the buffer holding transform matrices, to where the matrix is stored.
This is used only for triangle geometries.
The default value is 0.
Trait Implementations§
Source§impl Clone for AccelerationStructureBuildRangeInfo
impl Clone for AccelerationStructureBuildRangeInfo
Source§fn clone(&self) -> AccelerationStructureBuildRangeInfo
fn clone(&self) -> AccelerationStructureBuildRangeInfo
Returns a duplicate 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 AccelerationStructureBuildRangeInfo
impl Default for AccelerationStructureBuildRangeInfo
Source§fn default() -> AccelerationStructureBuildRangeInfo
fn default() -> AccelerationStructureBuildRangeInfo
Returns the “default value” for a type. Read more
Source§impl PartialEq for AccelerationStructureBuildRangeInfo
impl PartialEq for AccelerationStructureBuildRangeInfo
Source§fn eq(&self, other: &AccelerationStructureBuildRangeInfo) -> bool
fn eq(&self, other: &AccelerationStructureBuildRangeInfo) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for AccelerationStructureBuildRangeInfo
impl Eq for AccelerationStructureBuildRangeInfo
impl Pod for AccelerationStructureBuildRangeInfo
impl StructuralPartialEq for AccelerationStructureBuildRangeInfo
Auto Trait Implementations§
impl Freeze for AccelerationStructureBuildRangeInfo
impl RefUnwindSafe for AccelerationStructureBuildRangeInfo
impl Send for AccelerationStructureBuildRangeInfo
impl Sync for AccelerationStructureBuildRangeInfo
impl Unpin for AccelerationStructureBuildRangeInfo
impl UnsafeUnpin for AccelerationStructureBuildRangeInfo
impl UnwindSafe for AccelerationStructureBuildRangeInfo
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> BufferContents for T
impl<T> BufferContents for T
Source§const LAYOUT: BufferContentsLayout = const LAYOUT: BufferContentsLayout =
BufferContentsLayout::from_sized(Layout::new::<T>());
const LAYOUT: BufferContentsLayout = const LAYOUT: BufferContentsLayout = BufferContentsLayout::from_sized(Layout::new::<T>());
The layout of the contents.
unsafe fn ptr_from_slice(slice: NonNull<[u8]>) -> *mut T
Source§impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
Source§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.