wgpu::api::blas

Type Alias BlasTriangleGeometrySizeDescriptor

Source
pub type BlasTriangleGeometrySizeDescriptor = BlasTriangleGeometrySizeDescriptor;
Expand description

Descriptor for the size defining attributes of a triangle geometry, for a bottom level acceleration structure.

Aliased Type§

struct BlasTriangleGeometrySizeDescriptor {
    pub vertex_format: VertexFormat,
    pub vertex_count: u32,
    pub index_format: Option<IndexFormat>,
    pub index_count: Option<u32>,
    pub flags: AccelerationStructureGeometryFlags,
}

Fields§

§vertex_format: VertexFormat

Format of a vertex position, must be [VertexFormat::Float32x3] with just [Features::EXPERIMENTAL_RAY_TRACING_ACCELERATION_STRUCTURE] but later features may add more formats.

§vertex_count: u32

Number of vertices.

§index_format: Option<IndexFormat>

Format of an index. Only needed if an index buffer is used. If index_format is provided index_count is required.

§index_count: Option<u32>

Number of indices. Only needed if an index buffer is used. If index_count is provided index_format is required.

§flags: AccelerationStructureGeometryFlags

Flags for the geometry.

Trait Implementations

Source§

impl Clone for BlasTriangleGeometrySizeDescriptor

Source§

fn clone(&self) -> BlasTriangleGeometrySizeDescriptor

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for BlasTriangleGeometrySizeDescriptor

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for BlasTriangleGeometrySizeDescriptor

Source§

fn deserialize<__D>( __deserializer: __D, ) -> Result<BlasTriangleGeometrySizeDescriptor, <__D as Deserializer<'de>>::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl PartialEq for BlasTriangleGeometrySizeDescriptor

Source§

fn eq(&self, other: &BlasTriangleGeometrySizeDescriptor) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Serialize for BlasTriangleGeometrySizeDescriptor

Source§

fn serialize<__S>( &self, __serializer: __S, ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl Eq for BlasTriangleGeometrySizeDescriptor

Source§

impl StructuralPartialEq for BlasTriangleGeometrySizeDescriptor