From ee02e798cecb53273bd72af77ccd0c4ebb89581c Mon Sep 17 00:00:00 2001 From: Stephen Saunders Date: Mon, 22 Apr 2024 15:50:37 -0400 Subject: [PATCH] Fix validation warning in descriptorindexing example --- examples/descriptorindexing/descriptorindexing.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/descriptorindexing/descriptorindexing.cpp b/examples/descriptorindexing/descriptorindexing.cpp index 0a3cc5375..202ee0c2f 100644 --- a/examples/descriptorindexing/descriptorindexing.cpp +++ b/examples/descriptorindexing/descriptorindexing.cpp @@ -56,6 +56,7 @@ class VulkanExample : public VulkanExampleBase // [POI] Enable required extensions enabledInstanceExtensions.push_back(VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME); + enabledDeviceExtensions.push_back(VK_KHR_MAINTENANCE1_EXTENSION_NAME); enabledDeviceExtensions.push_back(VK_KHR_MAINTENANCE3_EXTENSION_NAME); enabledDeviceExtensions.push_back(VK_EXT_DESCRIPTOR_INDEXING_EXTENSION_NAME);