Struct wgpu_types::CreateTlasDescriptor
source · #[repr(C)]pub struct CreateTlasDescriptor<L> {
pub label: L,
pub max_instances: u32,
pub flags: AccelerationStructureFlags,
pub update_mode: AccelerationStructureUpdateMode,
}
Expand description
Descriptor for creating a top level acceleration structure.
Fields§
§label: L
Label for the top level acceleration structure.
max_instances: u32
Number of instances that can be stored in the acceleration structure.
flags: AccelerationStructureFlags
Flags for the bottom level acceleration structure.
update_mode: AccelerationStructureUpdateMode
Update mode for the bottom level acceleration structure.
Implementations§
source§impl<L> CreateTlasDescriptor<L>
impl<L> CreateTlasDescriptor<L>
sourcepub fn map_label<K>(&self, fun: impl FnOnce(&L) -> K) -> CreateTlasDescriptor<K>
pub fn map_label<K>(&self, fun: impl FnOnce(&L) -> K) -> CreateTlasDescriptor<K>
Takes a closure and maps the label of the blas descriptor into another.
Trait Implementations§
source§impl<L: Clone> Clone for CreateTlasDescriptor<L>
impl<L: Clone> Clone for CreateTlasDescriptor<L>
source§fn clone(&self) -> CreateTlasDescriptor<L>
fn clone(&self) -> CreateTlasDescriptor<L>
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<L: Debug> Debug for CreateTlasDescriptor<L>
impl<L: Debug> Debug for CreateTlasDescriptor<L>
source§impl<'de, L> Deserialize<'de> for CreateTlasDescriptor<L>where
L: Deserialize<'de>,
impl<'de, L> Deserialize<'de> for CreateTlasDescriptor<L>where
L: Deserialize<'de>,
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl<L: Hash> Hash for CreateTlasDescriptor<L>
impl<L: Hash> Hash for CreateTlasDescriptor<L>
source§impl<L: PartialEq> PartialEq for CreateTlasDescriptor<L>
impl<L: PartialEq> PartialEq for CreateTlasDescriptor<L>
source§impl<L> Serialize for CreateTlasDescriptor<L>where
L: Serialize,
impl<L> Serialize for CreateTlasDescriptor<L>where
L: Serialize,
impl<L: Eq> Eq for CreateTlasDescriptor<L>
impl<L> StructuralPartialEq for CreateTlasDescriptor<L>
Auto Trait Implementations§
impl<L> Freeze for CreateTlasDescriptor<L>where
L: Freeze,
impl<L> RefUnwindSafe for CreateTlasDescriptor<L>where
L: RefUnwindSafe,
impl<L> Send for CreateTlasDescriptor<L>where
L: Send,
impl<L> Sync for CreateTlasDescriptor<L>where
L: Sync,
impl<L> Unpin for CreateTlasDescriptor<L>where
L: Unpin,
impl<L> UnwindSafe for CreateTlasDescriptor<L>where
L: UnwindSafe,
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)