From ec4675bcfc4975fe9544071983692a0ca04ae9a1 Mon Sep 17 00:00:00 2001 From: Faith Ekstrand Date: Mon, 30 Jan 2023 20:12:01 -0600 Subject: [PATCH] nvk: Enable VK_KHR_create_renderpass2 Handled entirely in common code Part-of: --- src/nouveau/vulkan/nvk_physical_device.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/nouveau/vulkan/nvk_physical_device.c b/src/nouveau/vulkan/nvk_physical_device.c index fc184c172e0..09096619005 100644 --- a/src/nouveau/vulkan/nvk_physical_device.c +++ b/src/nouveau/vulkan/nvk_physical_device.c @@ -286,6 +286,7 @@ nvk_get_device_extensions(const struct nvk_physical_device *device, { *ext = (struct vk_device_extension_table) { .KHR_copy_commands2 = true, + .KHR_create_renderpass2 = true, .KHR_dedicated_allocation = true, .KHR_get_memory_requirements2 = true, .KHR_format_feature_flags2 = true,