[][src]Struct vulkanalia::vk::PhysicalDeviceRayTracingFeaturesKHR

#[repr(C)]pub struct PhysicalDeviceRayTracingFeaturesKHR {
    pub s_type: StructureType,
    pub next: *mut c_void,
    pub ray_tracing: u32,
    pub ray_tracing_shader_group_handle_capture_replay: u32,
    pub ray_tracing_shader_group_handle_capture_replay_mixed: u32,
    pub ray_tracing_acceleration_structure_capture_replay: u32,
    pub ray_tracing_indirect_trace_rays: u32,
    pub ray_tracing_indirect_acceleration_structure_build: u32,
    pub ray_tracing_host_acceleration_structure_commands: u32,
    pub ray_query: u32,
    pub ray_tracing_primitive_culling: u32,
}

Fields

s_type: StructureTypenext: *mut c_voidray_tracing: u32ray_tracing_shader_group_handle_capture_replay: u32ray_tracing_shader_group_handle_capture_replay_mixed: u32ray_tracing_acceleration_structure_capture_replay: u32ray_tracing_indirect_trace_rays: u32ray_tracing_indirect_acceleration_structure_build: u32ray_tracing_host_acceleration_structure_commands: u32ray_query: u32ray_tracing_primitive_culling: u32

Trait Implementations

impl Cast for PhysicalDeviceRayTracingFeaturesKHR[src]

type Target = PhysicalDeviceRayTracingFeaturesKHR

The other type this type type can be used interchangeably with in FFI.

impl Clone for PhysicalDeviceRayTracingFeaturesKHR[src]

impl Copy for PhysicalDeviceRayTracingFeaturesKHR[src]

impl Debug for PhysicalDeviceRayTracingFeaturesKHR[src]

impl Default for PhysicalDeviceRayTracingFeaturesKHR[src]

impl Eq for PhysicalDeviceRayTracingFeaturesKHR[src]

impl ExtendsDeviceCreateInfo for PhysicalDeviceRayTracingFeaturesKHR[src]

impl ExtendsPhysicalDeviceFeatures2 for PhysicalDeviceRayTracingFeaturesKHR[src]

impl HasBuilder<'static> for PhysicalDeviceRayTracingFeaturesKHR[src]

type Builder = PhysicalDeviceRayTracingFeaturesKHRBuilder

The associated builder for this type.

impl Hash for PhysicalDeviceRayTracingFeaturesKHR[src]

impl PartialEq<PhysicalDeviceRayTracingFeaturesKHR> for PhysicalDeviceRayTracingFeaturesKHR[src]

impl StructuralEq for PhysicalDeviceRayTracingFeaturesKHR[src]

impl StructuralPartialEq for PhysicalDeviceRayTracingFeaturesKHR[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, 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.