Disable swapchain resizing as it crashes currently

This commit is contained in:
baldurk
2015-09-02 11:55:36 +02:00
parent b416b8c0f9
commit e4db8252fd
+2 -1
View File
@@ -345,7 +345,8 @@ bool VulkanReplay::CheckResizeOutputWindow(uint64_t id)
outw.width = w;
outw.height = h;
if(outw.width > 0 && outw.height > 0)
// VKTODOHIGH Currently the resize code crashes - unsure why
if(outw.width > 0 && outw.height > 0 && 0)
{
bool depth = (outw.dsimg != VK_NULL_HANDLE);