From 1dc90e3f8bda01730120fb5677f852c0a30b21bf Mon Sep 17 00:00:00 2001 From: Alyssa Rosenzweig Date: Sun, 6 Apr 2025 14:13:35 -0400 Subject: [PATCH] hk: advertise maintenance8 Signed-off-by: Alyssa Rosenzweig Part-of: --- src/asahi/vulkan/hk_physical_device.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/asahi/vulkan/hk_physical_device.c b/src/asahi/vulkan/hk_physical_device.c index c5fc26fe1b1..63ae85eaf6f 100644 --- a/src/asahi/vulkan/hk_physical_device.c +++ b/src/asahi/vulkan/hk_physical_device.c @@ -89,6 +89,7 @@ hk_get_device_extensions(const struct hk_instance *instance, .KHR_maintenance5 = true, .KHR_maintenance6 = true, .KHR_maintenance7 = true, + .KHR_maintenance8 = true, .KHR_map_memory2 = true, .KHR_multiview = true, .KHR_pipeline_executable_properties = true, @@ -396,6 +397,9 @@ hk_get_device_features( /* VK_KHR_maintenance7 */ .maintenance7 = true, + /* VK_KHR_maintenance8 */ + .maintenance8 = true, + /* VK_KHR_pipeline_executable_properties */ .pipelineExecutableInfo = true,