Add logging timeout size on Vulkan fence wait fail

This commit is contained in:
2026-04-20 09:47:13 +02:00
parent c474f2e522
commit f85836d090
@@ -2257,6 +2257,7 @@ bool FenceManagerVulkan::WaitForFence(FenceVulkan* fence, float timeoutSeconds)
fence->IsSignaled = true; fence->IsSignaled = true;
return false; return false;
} }
LOG(Warning, "vkWaitForFences failed with timeout: {}s", timeoutSeconds);
return true; return true;
} }