[−][src]Struct ash::extensions::nv::RayTracing
Methods
impl RayTracing
[src]
pub fn new<I: InstanceV1_0, D: DeviceV1_0>(
instance: &I,
device: &D
) -> RayTracing
[src]
instance: &I,
device: &D
) -> RayTracing
pub unsafe fn get_properties<I: InstanceV1_1>(
instance: &I,
pdevice: PhysicalDevice
) -> PhysicalDeviceRayTracingPropertiesNV
[src]
instance: &I,
pdevice: PhysicalDevice
) -> PhysicalDeviceRayTracingPropertiesNV
pub unsafe fn create_acceleration_structure(
&self,
create_info: &AccelerationStructureCreateInfoNV,
allocation_callbacks: Option<&AllocationCallbacks>
) -> VkResult<AccelerationStructureNV>
[src]
&self,
create_info: &AccelerationStructureCreateInfoNV,
allocation_callbacks: Option<&AllocationCallbacks>
) -> VkResult<AccelerationStructureNV>
pub unsafe fn destroy_acceleration_structure(
&self,
accel_struct: AccelerationStructureNV,
allocation_callbacks: Option<&AllocationCallbacks>
)
[src]
&self,
accel_struct: AccelerationStructureNV,
allocation_callbacks: Option<&AllocationCallbacks>
)
pub unsafe fn get_acceleration_structure_memory_requirements(
&self,
info: &AccelerationStructureMemoryRequirementsInfoNV
) -> MemoryRequirements2KHR
[src]
&self,
info: &AccelerationStructureMemoryRequirementsInfoNV
) -> MemoryRequirements2KHR
pub unsafe fn bind_acceleration_structure_memory(
&self,
bind_info: &[BindAccelerationStructureMemoryInfoNV]
) -> VkResult<()>
[src]
&self,
bind_info: &[BindAccelerationStructureMemoryInfoNV]
) -> VkResult<()>
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
)
[src]
&self,
command_buffer: CommandBuffer,
info: &AccelerationStructureInfoNV,
instance_data: Buffer,
instance_offset: DeviceSize,
update: bool,
dst: AccelerationStructureNV,
src: AccelerationStructureNV,
scratch: Buffer,
scratch_offset: DeviceSize
)
pub unsafe fn cmd_copy_acceleration_structure(
&self,
command_buffer: CommandBuffer,
dst: AccelerationStructureNV,
src: AccelerationStructureNV,
mode: CopyAccelerationStructureModeNV
)
[src]
&self,
command_buffer: CommandBuffer,
dst: AccelerationStructureNV,
src: AccelerationStructureNV,
mode: CopyAccelerationStructureModeNV
)
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
)
[src]
&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
)
pub unsafe fn create_ray_tracing_pipelines(
&self,
pipeline_cache: PipelineCache,
create_info: &[RayTracingPipelineCreateInfoNV],
allocation_callbacks: Option<&AllocationCallbacks>
) -> VkResult<Vec<Pipeline>>
[src]
&self,
pipeline_cache: PipelineCache,
create_info: &[RayTracingPipelineCreateInfoNV],
allocation_callbacks: Option<&AllocationCallbacks>
) -> VkResult<Vec<Pipeline>>
pub unsafe fn get_ray_tracing_shader_group_handles(
&self,
pipeline: Pipeline,
first_group: u32,
group_count: u32,
data: &mut [u8]
) -> VkResult<()>
[src]
&self,
pipeline: Pipeline,
first_group: u32,
group_count: u32,
data: &mut [u8]
) -> VkResult<()>
pub unsafe fn get_acceleration_structure_handle(
&self,
accel_struct: AccelerationStructureNV
) -> VkResult<u64>
[src]
&self,
accel_struct: AccelerationStructureNV
) -> VkResult<u64>
pub unsafe fn cmd_write_acceleration_structures_properties(
&self,
command_buffer: CommandBuffer,
structures: &[AccelerationStructureNV],
query_type: QueryType,
query_pool: QueryPool,
first_query: u32
)
[src]
&self,
command_buffer: CommandBuffer,
structures: &[AccelerationStructureNV],
query_type: QueryType,
query_pool: QueryPool,
first_query: u32
)
pub unsafe fn compile_deferred(
&self,
pipeline: Pipeline,
shader: u32
) -> VkResult<()>
[src]
&self,
pipeline: Pipeline,
shader: u32
) -> VkResult<()>
pub fn name() -> &'static CStr
[src]
pub fn fp(&self) -> &NvRayTracingFn
[src]
pub fn device(&self) -> Device
[src]
Trait Implementations
impl Clone for RayTracing
[src]
fn clone(&self) -> RayTracing
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Auto Trait Implementations
impl RefUnwindSafe for RayTracing
impl Send for RayTracing
impl Sync for RayTracing
impl Unpin for RayTracing
impl UnwindSafe for RayTracing
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,