From e3125c8d2e5abf3eda845f0c66404d5bd1a65c8e Mon Sep 17 00:00:00 2001 From: Serdar Kocdemir Date: Fri, 12 Jul 2024 11:25:42 +0100 Subject: [PATCH] Add extensions used in test applications Add VK_KHR_ray_tracing_pipeline and VK_KHR_pipeline_library extensions support which are used by some test applications. Reviewed-by: Aaron Ruby Acked-by: Yonggang Luo Acked-by: Adam Jackson Part-of: --- src/gfxstream/codegen/scripts/cerealgenerator.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/gfxstream/codegen/scripts/cerealgenerator.py b/src/gfxstream/codegen/scripts/cerealgenerator.py index 720d218b8c9..af734101d76 100644 --- a/src/gfxstream/codegen/scripts/cerealgenerator.py +++ b/src/gfxstream/codegen/scripts/cerealgenerator.py @@ -124,6 +124,8 @@ SUPPORTED_FEATURES = [ "VK_KHR_external_semaphore_win32", "VK_KHR_external_memory_win32", "VK_NV_device_diagnostic_checkpoints", + "VK_KHR_ray_tracing_pipeline", + "VK_KHR_pipeline_library", # Android "VK_ANDROID_native_buffer", "VK_ANDROID_external_memory_android_hardware_buffer", @@ -171,6 +173,8 @@ SUPPORTED_MODULES = { "VK_EXT_swapchain_maintenance1" : HOST_MODULES, "VK_KHR_swapchain" : HOST_MODULES, "VK_NV_device_diagnostic_checkpoints": ["goldfish_vk_dispatch"], + "VK_KHR_ray_tracing_pipeline": HOST_MODULES, + "VK_KHR_pipeline_library": HOST_MODULES, } # These modules will be used when the feature is not supported.