We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8a7d80 commit 4536b5aCopy full SHA for 4536b5a
src/contrib/parallel-rdp/parallel-rdp-standalone/vulkan/wsi.cpp
@@ -720,8 +720,10 @@ bool WSI::begin_frame()
720
#ifdef VULKAN_DEBUG
721
LOGI("AcquireNextImageKHR is suboptimal, will recreate.\n");
722
#endif
723
+#ifndef N64_MACOS // Hack - this seems to always be true on MoltenVK
724
swapchain_is_suboptimal = true;
725
LOGW("Swapchain suboptimal.\n");
726
+#endif
727
}
728
729
if (result >= 0)
@@ -902,7 +904,9 @@ bool WSI::end_frame()
902
904
903
905
LOGI("QueuePresent is suboptimal, will recreate.\n");
906
907
908
909
910
911
912
// The present semaphore is consumed even on OUT_OF_DATE, etc.
0 commit comments