[][src]Struct vulkanalia::vk::RayTracingPipelineCreateInfoKHR

#[repr(C)]pub struct RayTracingPipelineCreateInfoKHR {
    pub s_type: StructureType,
    pub next: *const c_void,
    pub flags: PipelineCreateFlags,
    pub stage_count: u32,
    pub stages: *const PipelineShaderStageCreateInfo,
    pub group_count: u32,
    pub groups: *const RayTracingShaderGroupCreateInfoKHR,
    pub max_pipeline_ray_recursion_depth: u32,
    pub library_info: *const PipelineLibraryCreateInfoKHR,
    pub library_interface: *const RayTracingPipelineInterfaceCreateInfoKHR,
    pub dynamic_state: *const PipelineDynamicStateCreateInfo,
    pub layout: PipelineLayout,
    pub base_pipeline_handle: Pipeline,
    pub base_pipeline_index: i32,
}

Fields

s_type: StructureTypenext: *const c_voidflags: PipelineCreateFlagsstage_count: u32stages: *const PipelineShaderStageCreateInfogroup_count: u32groups: *const RayTracingShaderGroupCreateInfoKHRmax_pipeline_ray_recursion_depth: u32library_info: *const PipelineLibraryCreateInfoKHRlibrary_interface: *const RayTracingPipelineInterfaceCreateInfoKHRdynamic_state: *const PipelineDynamicStateCreateInfolayout: PipelineLayoutbase_pipeline_handle: Pipelinebase_pipeline_index: i32

Trait Implementations

impl Cast for RayTracingPipelineCreateInfoKHR[src]

type Target = RayTracingPipelineCreateInfoKHR

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

impl Clone for RayTracingPipelineCreateInfoKHR[src]

impl Copy for RayTracingPipelineCreateInfoKHR[src]

impl Debug for RayTracingPipelineCreateInfoKHR[src]

impl Default for RayTracingPipelineCreateInfoKHR[src]

impl Eq for RayTracingPipelineCreateInfoKHR[src]

impl<'b> HasBuilder<'b> for RayTracingPipelineCreateInfoKHR[src]

type Builder = RayTracingPipelineCreateInfoKHRBuilder<'b>

The associated builder for this type.

impl Hash for RayTracingPipelineCreateInfoKHR[src]

impl PartialEq<RayTracingPipelineCreateInfoKHR> for RayTracingPipelineCreateInfoKHR[src]

impl StructuralEq for RayTracingPipelineCreateInfoKHR[src]

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