#[repr(C)]pub struct AccelerationStructureGeometryTrianglesDataKHR<'a> {
pub s_type: StructureType,
pub p_next: *const c_void,
pub vertex_format: Format,
pub vertex_data: DeviceOrHostAddressConstKHR,
pub vertex_stride: DeviceSize,
pub max_vertex: u32,
pub index_type: IndexType,
pub index_data: DeviceOrHostAddressConstKHR,
pub transform_data: DeviceOrHostAddressConstKHR,
pub _marker: PhantomData<&'a ()>,
}
Expand description
Fields§
§s_type: StructureType
§p_next: *const c_void
§vertex_format: Format
§vertex_data: DeviceOrHostAddressConstKHR
§vertex_stride: DeviceSize
§max_vertex: u32
§index_type: IndexType
§index_data: DeviceOrHostAddressConstKHR
§transform_data: DeviceOrHostAddressConstKHR
§_marker: PhantomData<&'a ()>
Implementations§
source§impl<'a> AccelerationStructureGeometryTrianglesDataKHR<'a>
impl<'a> AccelerationStructureGeometryTrianglesDataKHR<'a>
pub fn vertex_format(self, vertex_format: Format) -> Self
pub fn vertex_data(self, vertex_data: DeviceOrHostAddressConstKHR) -> Self
pub fn vertex_stride(self, vertex_stride: DeviceSize) -> Self
pub fn max_vertex(self, max_vertex: u32) -> Self
pub fn index_type(self, index_type: IndexType) -> Self
pub fn index_data(self, index_data: DeviceOrHostAddressConstKHR) -> Self
pub fn transform_data(self, transform_data: DeviceOrHostAddressConstKHR) -> Self
sourcepub fn push_next<T: ExtendsAccelerationStructureGeometryTrianglesDataKHR + ?Sized>(
self,
next: &'a mut T,
) -> Self
pub fn push_next<T: ExtendsAccelerationStructureGeometryTrianglesDataKHR + ?Sized>( self, next: &'a mut T, ) -> Self
Prepends the given extension struct between the root and the first pointer. This
method only exists on structs that can be passed to a function directly. Only
valid extension structs can be pushed into the chain.
If the chain looks like A -> B -> C
, and you call x.push_next(&mut D)
, then the
chain will look like A -> D -> B -> C
.
Trait Implementations§
source§impl<'a> Clone for AccelerationStructureGeometryTrianglesDataKHR<'a>
impl<'a> Clone for AccelerationStructureGeometryTrianglesDataKHR<'a>
source§fn clone(&self) -> AccelerationStructureGeometryTrianglesDataKHR<'a>
fn clone(&self) -> AccelerationStructureGeometryTrianglesDataKHR<'a>
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<'a> TaggedStructure for AccelerationStructureGeometryTrianglesDataKHR<'a>
impl<'a> TaggedStructure for AccelerationStructureGeometryTrianglesDataKHR<'a>
const STRUCTURE_TYPE: StructureType = StructureType::ACCELERATION_STRUCTURE_GEOMETRY_TRIANGLES_DATA_KHR
impl<'a> Copy for AccelerationStructureGeometryTrianglesDataKHR<'a>
impl Send for AccelerationStructureGeometryTrianglesDataKHR<'_>
impl Sync for AccelerationStructureGeometryTrianglesDataKHR<'_>
Auto Trait Implementations§
impl<'a> Freeze for AccelerationStructureGeometryTrianglesDataKHR<'a>
impl<'a> RefUnwindSafe for AccelerationStructureGeometryTrianglesDataKHR<'a>
impl<'a> Unpin for AccelerationStructureGeometryTrianglesDataKHR<'a>
impl<'a> UnwindSafe for AccelerationStructureGeometryTrianglesDataKHR<'a>
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