Struct ash::extensions::nv::RayTracing

source ·
pub struct RayTracing { /* private fields */ }

Implementations§

source§

impl RayTracing

source

pub fn new(instance: &Instance, device: &Device) -> Self

source

pub unsafe fn get_properties( instance: &Instance, pdevice: PhysicalDevice ) -> PhysicalDeviceRayTracingPropertiesNV

source

pub unsafe fn create_acceleration_structure( &self, create_info: &AccelerationStructureCreateInfoNV, allocation_callbacks: Option<&AllocationCallbacks> ) -> VkResult<AccelerationStructureNV>

source

pub unsafe fn destroy_acceleration_structure( &self, accel_struct: AccelerationStructureNV, allocation_callbacks: Option<&AllocationCallbacks> )

source

pub unsafe fn get_acceleration_structure_memory_requirements( &self, info: &AccelerationStructureMemoryRequirementsInfoNV ) -> MemoryRequirements2KHR

source

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

source

pub unsafe fn cmd_build_acceleration_structure( &self, command_buffer: CommandBuffer, info: &AccelerationStructureInfoNV, instance_data: Buffer, instance_offset: DeviceSize, update: bool, dst: AccelerationStructureNV, src: AccelerationStructureNV, scratch: Buffer, scratch_offset: DeviceSize )

source

pub unsafe fn cmd_copy_acceleration_structure( &self, command_buffer: CommandBuffer, dst: AccelerationStructureNV, src: AccelerationStructureNV, mode: CopyAccelerationStructureModeNV )

source

pub unsafe fn cmd_trace_rays( &self, command_buffer: CommandBuffer, raygen_shader_binding_table_buffer: Buffer, raygen_shader_binding_offset: DeviceSize, miss_shader_binding_table_buffer: Buffer, miss_shader_binding_offset: DeviceSize, miss_shader_binding_stride: DeviceSize, hit_shader_binding_table_buffer: Buffer, hit_shader_binding_offset: DeviceSize, hit_shader_binding_stride: DeviceSize, callable_shader_binding_table_buffer: Buffer, callable_shader_binding_offset: DeviceSize, callable_shader_binding_stride: DeviceSize, width: u32, height: u32, depth: u32 )

source

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

source

pub unsafe fn get_ray_tracing_shader_group_handles( &self, pipeline: Pipeline, first_group: u32, group_count: u32, data: &mut [u8] ) -> VkResult<()>

source

pub unsafe fn get_acceleration_structure_handle( &self, accel_struct: AccelerationStructureNV ) -> VkResult<u64>

source

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

source

pub unsafe fn compile_deferred( &self, pipeline: Pipeline, shader: u32 ) -> VkResult<()>

source

pub const fn name() -> &'static CStr

source

pub fn fp(&self) -> &NvRayTracingFn

source

pub fn device(&self) -> Device

Trait Implementations§

source§

impl Clone for RayTracing

source§

fn clone(&self) -> RayTracing

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.