From 91085bf3379fa32d2cd3f164c8e84542b94baaab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iv=C3=A1n=20Briano?= Date: Wed, 21 Sep 2022 12:03:28 -0700 Subject: [PATCH] anv: enable rayTraversalPrimitiveCulling feature It is mandatory if VK_KHR_ray_query is supported. Reviewed-by: Lionel Landwerlin Part-of: --- src/intel/vulkan/anv_device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/intel/vulkan/anv_device.c b/src/intel/vulkan/anv_device.c index 4e8f9981265..112fb89f20f 100644 --- a/src/intel/vulkan/anv_device.c +++ b/src/intel/vulkan/anv_device.c @@ -1582,7 +1582,7 @@ void anv_GetPhysicalDeviceFeatures2( features->rayTracingPipelineShaderGroupHandleCaptureReplay = false; features->rayTracingPipelineShaderGroupHandleCaptureReplayMixed = false; features->rayTracingPipelineTraceRaysIndirect = true; - features->rayTraversalPrimitiveCulling = false; + features->rayTraversalPrimitiveCulling = true; break; }