Struct ash::extensions::khr::RayTracingPipeline[][src]

pub struct RayTracingPipeline { /* fields omitted */ }

Implementations

impl RayTracingPipeline[src]

pub fn new<I: InstanceV1_0, D: DeviceV1_0>(instance: &I, device: &D) -> Self[src]

pub unsafe fn get_properties<I: InstanceV1_1>(
    instance: &I,
    pdevice: PhysicalDevice
) -> PhysicalDeviceRayTracingPipelinePropertiesKHR
[src]

pub unsafe fn cmd_trace_rays(
    &self,
    command_buffer: CommandBuffer,
    raygen_shader_binding_tables: &StridedDeviceAddressRegionKHR,
    miss_shader_binding_tables: &StridedDeviceAddressRegionKHR,
    hit_shader_binding_tables: &StridedDeviceAddressRegionKHR,
    callable_shader_binding_tables: &StridedDeviceAddressRegionKHR,
    width: u32,
    height: u32,
    depth: u32
)
[src]

pub unsafe fn create_ray_tracing_pipelines(
    &self,
    deferred_operation: DeferredOperationKHR,
    pipeline_cache: PipelineCache,
    create_info: &[RayTracingPipelineCreateInfoKHR],
    allocation_callbacks: Option<&AllocationCallbacks>
) -> VkResult<Vec<Pipeline>>
[src]

pub unsafe fn get_ray_tracing_shader_group_handles(
    &self,
    pipeline: Pipeline,
    first_group: u32,
    group_count: u32,
    data_size: usize
) -> VkResult<Vec<u8>>
[src]

pub unsafe fn get_ray_tracing_capture_replay_shader_group_handles(
    &self,
    pipeline: Pipeline,
    first_group: u32,
    group_count: u32,
    data_size: usize
) -> VkResult<Vec<u8>>
[src]

pub unsafe fn cmd_trace_rays_indirect(
    &self,
    command_buffer: CommandBuffer,
    raygen_shader_binding_table: &[StridedDeviceAddressRegionKHR],
    miss_shader_binding_table: &[StridedDeviceAddressRegionKHR],
    hit_shader_binding_table: &[StridedDeviceAddressRegionKHR],
    callable_shader_binding_table: &[StridedDeviceAddressRegionKHR],
    indirect_device_address: DeviceAddress
)
[src]

pub unsafe fn get_ray_tracing_shader_group_stack_size(
    &self,
    pipeline: Pipeline,
    group: u32,
    group_shader: ShaderGroupShaderKHR
) -> DeviceSize
[src]

pub unsafe fn cmd_set_ray_tracing_pipeline_stack_size(
    &self,
    command_buffer: CommandBuffer,
    pipeline_stack_size: u32
)
[src]

pub fn name() -> &'static CStr[src]

pub fn fp(&self) -> &KhrRayTracingPipelineFn[src]

pub fn device(&self) -> Device[src]

Trait Implementations

impl Clone for RayTracingPipeline[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.