summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorclayjohn <claynjohn@gmail.com>2023-02-07 13:43:14 -0800
committerclayjohn <claynjohn@gmail.com>2023-02-07 13:43:14 -0800
commitc9d2bc91aace984b0c5fc1fcfa5b68e0a33e2ef6 (patch)
tree9baa33ff68fc4d452d62d161110d633655174184 /drivers
parent929333fe267f488638c76564237faff9d5d572fc (diff)
downloadredot-engine-c9d2bc91aace984b0c5fc1fcfa5b68e0a33e2ef6.tar.gz
Recreate swap chain when suboptimal to avoid error spam
Diffstat (limited to 'drivers')
-rw-r--r--drivers/vulkan/vulkan_context.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/vulkan/vulkan_context.cpp b/drivers/vulkan/vulkan_context.cpp
index 864ad5931a..58855c261d 100644
--- a/drivers/vulkan/vulkan_context.cpp
+++ b/drivers/vulkan/vulkan_context.cpp
@@ -2268,8 +2268,8 @@ Error VulkanContext::prepare_buffers() {
} else if (err == VK_SUBOPTIMAL_KHR) {
// Swapchain is not as optimal as it could be, but the platform's
// presentation engine will still present the image correctly.
- print_verbose("Vulkan: Early suboptimal swapchain.");
- break;
+ print_verbose("Vulkan: Early suboptimal swapchain, recreating.");
+ _update_swap_chain(w);
} else if (err != VK_SUCCESS) {
ERR_BREAK_MSG(err != VK_SUCCESS, "Vulkan: Did not create swapchain successfully.");
} else {