Dragging the window edge on Linux causes dozens of XCB_CONFIGURE_NOTIFY events which quickly causes a VK_ERROR_OUT_OF_DEVICE_MEMORY in one of the calls to vkAllocateMemory in VulkanExampleBase::setupFrameBuffer().
This adds a small change to clean up the allocated memory for the multisampleTarget images.
Dragging the window edge on Linux causes dozens of
XCB_CONFIGURE_NOTIFY
events which quickly causes aVK_ERROR_OUT_OF_DEVICE_MEMORY
in one of the calls tovkAllocateMemory
inVulkanExampleBase::setupFrameBuffer()
.This adds a small change to clean up the allocated memory for the
multisampleTarget
images.