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
#4 doesn't solve this issue.
It seems that app run well on AMD's card, but on my laptop with NVidia card, it will return out of date error result.
vkPresent will detect if window size is same with swapchain size,
if not, it will return suboptimal or out of update. suboptimal is a present success but not optimal, out of date is an error result notifying app that swapchain is out of date.
When app is minimized, on some cards, vkPresent will return out of date because window's size is 0x0. I have tried to create swapchain and related resources when vkPresent return out of date, but swapchain does not accept size 0x0. Also, I think that the app doesn't need to present when window size is 0x0.
After window is minimized, vkPresent will throw OutOfDate exception because swapchain does not match window size.
The text was updated successfully, but these errors were encountered: