Fix x11 hang when resizing on vulkan (#4184)

Co-authored-by: Connor Fitzgerald <connorwadefitzgerald@gmail.com>
This commit is contained in:
Alix Bott 2023-10-03 22:24:54 +02:00 committed by Connor Fitzgerald
parent d2b8863cd9
commit 1012c71167
No known key found for this signature in database
GPG Key ID: 7D3FA445BAD3008D

View File

@ -157,6 +157,12 @@ impl super::Swapchain {
/// - The device must have been made idle before calling this function.
unsafe fn release_resources(self, device: &ash::Device) -> Self {
profiling::scope!("Swapchain::release_resources");
{
profiling::scope!("vkDeviceWaitIdle");
// We need to also wait until all presentation work is done. Because there is no way to portably wait until
// the presentation work is done, we are forced to wait until the device is idle.
let _ = unsafe { device.device_wait_idle() };
};
unsafe { device.destroy_fence(self.fence, None) };
self
}