Struct sierra::AccelerationStructureInstance[][src]

#[repr(align(16))]
#[repr(C)]pub struct AccelerationStructureInstance {
    pub transform: TransformMatrix,
    pub custom_index_mask: InstanceCustomIndexAndMask,
    pub shader_binding_offset_flags: InstanceShaderBindingOffsetAndFlags,
    pub acceleration_structure_reference: DeviceAddress,
}

Fields

transform: TransformMatrixcustom_index_mask: InstanceCustomIndexAndMaskshader_binding_offset_flags: InstanceShaderBindingOffsetAndFlagsacceleration_structure_reference: DeviceAddress

Implementations

impl AccelerationStructureInstance[src]

pub fn new(blas_address: DeviceAddress) -> Self[src]

pub fn with_transform(self, transform: TransformMatrix) -> Self[src]

pub fn set_transform(&mut self, transform: TransformMatrix) -> &mut Self[src]

Trait Implementations

impl Clone for AccelerationStructureInstance[src]

impl Copy for AccelerationStructureInstance[src]

impl Debug for AccelerationStructureInstance[src]

impl Pod for AccelerationStructureInstance[src]

impl Zeroable for AccelerationStructureInstance[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.