You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Validation Error: [ VUID-VkSwapchainCreateInfoKHR-swapchainMaintenance1-10157 ] | MessageID = 0xedce379e
vkCreateSwapchainKHR(): pCreateInfo->flags is VK_SWAPCHAIN_CREATE_DEFERRED_MEMORY_ALLOCATION_BIT_EXT, but swapchainMaintenance1 is not enabled.
The Vulkan spec states: If the swapchainMaintenance1 feature is not enabled, then flags must not include VK_SWAPCHAIN_CREATE_DEFERRED_MEMORY_ALLOCATION_BIT_EXT (https://docs.vulkan.org/spec/latest/chapters/VK_KHR_surface/wsi.html#VUID-VkSwapchainCreateInfoKHR-swapchainMaintenance1-10157)
for the swapchain_recreation example
Simple fix is to just enable the swapchainMaintenance1 feature along with the extension it already provides
The text was updated successfully, but these errors were encountered:
Will take some fundamental changes to the sample, as right now the gpu feature setup comes after the sample checking for extension support / enabling. Will try to take a stab at it.
The latest Validation (future 1.4.309 SDK) I get
for the
swapchain_recreation
exampleSimple fix is to just enable the
swapchainMaintenance1
feature along with the extension it already providesThe text was updated successfully, but these errors were encountered: