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

pub struct RayTracing { /* fields omitted */ }

Implementations

impl RayTracing[src]

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

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

pub unsafe fn create_acceleration_structure(
    &self,
    create_info: &AccelerationStructureCreateInfoKHR,
    allocation_callbacks: Option<&AllocationCallbacks>
) -> VkResult<AccelerationStructureKHR>
[src]

pub unsafe fn destroy_acceleration_structure(
    &self,
    accel_struct: AccelerationStructureKHR,
    allocation_callbacks: Option<&AllocationCallbacks>
)
[src]

pub unsafe fn get_acceleration_structure_memory_requirements(
    &self,
    info: &AccelerationStructureMemoryRequirementsInfoKHR
) -> MemoryRequirements2KHR
[src]

pub unsafe fn bind_acceleration_structure_memory(
    &self,
    bind_info: &[BindAccelerationStructureMemoryInfoKHR]
) -> VkResult<()>
[src]

pub unsafe fn cmd_build_acceleration_structure(
    &self,
    command_buffer: CommandBuffer,
    infos: &[AccelerationStructureBuildGeometryInfoKHR],
    offset_infos: &[&[AccelerationStructureBuildOffsetInfoKHR]]
)
[src]

pub unsafe fn cmd_copy_acceleration_structure(
    &self,
    command_buffer: CommandBuffer,
    info: &CopyAccelerationStructureInfoKHR
)
[src]

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

pub unsafe fn create_ray_tracing_pipelines(
    &self,
    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: &mut [u8]
) -> VkResult<()>
[src]

pub unsafe fn get_acceleration_structure_device_address(
    &self,
    info: &AccelerationStructureDeviceAddressInfoKHR
) -> DeviceAddress
[src]

pub unsafe fn cmd_write_acceleration_structures_properties(
    &self,
    command_buffer: CommandBuffer,
    structures: &[AccelerationStructureKHR],
    query_type: QueryType,
    query_pool: QueryPool,
    first_query: u32
)
[src]

pub unsafe fn cmd_build_acceleration_structure_indirect(
    &self,
    command_buffer: CommandBuffer,
    info: &AccelerationStructureBuildGeometryInfoKHR,
    indirect_buffer: Buffer,
    indirect_offset: DeviceSize,
    indirect_stride: u32
)
[src]

pub unsafe fn copy_acceleration_structure_to_memory(
    &self,
    device: Device,
    info: &CopyAccelerationStructureToMemoryInfoKHR
) -> VkResult<()>
[src]

pub unsafe fn copy_memory_to_acceleration_structure(
    &self,
    device: Device,
    info: &CopyMemoryToAccelerationStructureInfoKHR
) -> VkResult<()>
[src]

pub unsafe fn cmd_copy_acceleration_structure_to_memory(
    &self,
    command_buffer: CommandBuffer,
    info: &CopyAccelerationStructureToMemoryInfoKHR
)
[src]

pub unsafe fn cmd_copy_memory_to_acceleration_structure(
    &self,
    command_buffer: CommandBuffer,
    info: &CopyMemoryToAccelerationStructureInfoKHR
)
[src]

pub unsafe fn get_ray_tracing_capture_replay_shader_group_handles(
    &self,
    device: Device,
    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: &[StridedBufferRegionKHR],
    miss_shader_binding_table: &[StridedBufferRegionKHR],
    hit_shader_binding_table: &[StridedBufferRegionKHR],
    callable_shader_binding_table: &[StridedBufferRegionKHR],
    buffer: Buffer,
    offset: DeviceSize
)
[src]

pub unsafe fn get_device_acceleration_structure_compatibility(
    &self,
    device: Device,
    version: &AccelerationStructureVersionKHR
) -> VkResult<()>
[src]

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

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

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

Trait Implementations

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