[][src]Struct erupt::extensions::khr_ray_tracing::PhysicalDeviceRayTracingPropertiesKHR

#[repr(C)]pub struct PhysicalDeviceRayTracingPropertiesKHR {
    pub s_type: StructureType,
    pub p_next: *mut c_void,
    pub shader_group_handle_size: u32,
    pub max_recursion_depth: u32,
    pub max_shader_group_stride: u32,
    pub shader_group_base_alignment: u32,
    pub max_geometry_count: u64,
    pub max_instance_count: u64,
    pub max_primitive_count: u64,
    pub max_descriptor_set_acceleration_structures: u32,
    pub shader_group_handle_capture_replay_size: u32,
}

Vulkan Manual Page · Structure

Fields

s_type: StructureTypep_next: *mut c_voidshader_group_handle_size: u32max_recursion_depth: u32max_shader_group_stride: u32shader_group_base_alignment: u32max_geometry_count: u64max_instance_count: u64max_primitive_count: u64max_descriptor_set_acceleration_structures: u32shader_group_handle_capture_replay_size: u32

Methods

impl PhysicalDeviceRayTracingPropertiesKHR[src]

pub unsafe fn extend<T>(&mut self, other: &mut T) where
    T: ExtendableBy<Self>, 
[src]

Appends self to other pointer chain

Safety

Make sure you don't drop self before it is used by the pointer chain

pub fn builder<'a>(self) -> PhysicalDeviceRayTracingPropertiesKHRBuilder<'a>[src]

Trait Implementations

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, 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.