-
Notifications
You must be signed in to change notification settings - Fork 126
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix crash when window cannot be opened with same resolution #1568
Conversation
CI gfxreconstruct build queued with queue ID 193157. |
CI gfxreconstruct build # 4244 running. |
CI gfxreconstruct build # 4244 passed. |
72a8ce9
to
b12410f
Compare
CI gfxreconstruct build queued with queue ID 193177. |
CI gfxreconstruct build # 4245 running. |
CI gfxreconstruct build # 4245 passed. |
b12410f
to
7f25041
Compare
CI gfxreconstruct build queued with queue ID 198148. |
CI gfxreconstruct build # 4262 running. |
CI gfxreconstruct build # 4262 passed. |
Rebasing this on the latest tree. I'll be overwritting your tree. |
Fix a crash on VK_ERROR_OUT_OF_DATE_KHR when the window of the replayer cannot be resized to the size of the swapchain at capture time and that the replayer uses virtual swapchain. The idea is to store the actual size of the window that could be opened at replay time in the virtual swapchain so that the virtual swapchain has the same size as at capture time, and the actual swapchain is the size of the window. When the image is copied from the virtual image to the actual image, only a sub-part of the image is copied. Change-Id: I9609fc524b0faf0f6aed3f1efe570fc5fed86225
Fix a crash on VK_ERROR_OUT_OF_DATE_KHR when the window of the replayer cannot be resized to the size of the swapchain at capture time and that the replayer uses virtual swapchain. The idea is to store the actual size of the window that could be opened at replay time in the virtual swapchain so that the virtual swapchain has the same size as at capture time, and the actual swapchain is the size of the window. When the image is copied from the virtual image to the actual image, only a sub-part of the image is copied. Change-Id: I9609fc524b0faf0f6aed3f1efe570fc5fed86225
This commit partially fix issue #759
Fix a crash on
VK_ERROR_OUT_OF_DATE_KHR
when the window of the replayer cannot be resized to the size of the swapchain at capture time and that the replayer uses virtual swapchain.The idea is to store the actual size of the window that could be opened at replay time in the virtual swapchain so that the virtual swapchain has the same size as at capture time, and the actual swapchain is the size of the window. When the image is copied from the virtual image to the actual image, only a sub-part of the image is copied.