pub struct PhysicalDeviceRayTracingPipelineFeatures {
pub ray_tracing_pipeline: bool,
pub ray_tracing_pipeline_shader_group_handle_capture_replay: bool,
pub ray_tracing_pipeline_shader_group_handle_capture_replay_mixed: bool,
pub ray_tracing_pipeline_trace_rays_indirect: bool,
pub ray_traversal_primitive_culling: bool,
}Expand description
Features of the physical device for ray tracing.
Fields§
§ray_tracing_pipeline: boolIndicates whether the implementation supports the ray tracing pipeline functionality.
See Ray Tracing.
ray_tracing_pipeline_shader_group_handle_capture_replay: boolIndicates whether the implementation supports saving and reusing shader group handles, e.g. for trace capture and replay.
ray_tracing_pipeline_shader_group_handle_capture_replay_mixed: boolIndicates whether the implementation supports reuse of shader group handles being arbitrarily mixed with creation of non-reused shader group handles.
If this is false, all reused shader group handles must be specified before any non-reused
handles may be created.
ray_tracing_pipeline_trace_rays_indirect: boolIndicates whether the implementation supports indirect ray tracing commands, e.g.
vkCmdTraceRaysIndirectKHR.
ray_traversal_primitive_culling: boolIndicates whether the implementation supports primitive culling during ray traversal.
Trait Implementations§
source§impl From<PhysicalDeviceRayTracingPipelineFeaturesKHR> for PhysicalDeviceRayTracingPipelineFeatures
impl From<PhysicalDeviceRayTracingPipelineFeaturesKHR> for PhysicalDeviceRayTracingPipelineFeatures
source§fn from(features: PhysicalDeviceRayTracingPipelineFeaturesKHR) -> Self
fn from(features: PhysicalDeviceRayTracingPipelineFeaturesKHR) -> Self
Converts to this type from the input type.