From f85836d0907ce6a326e038cc1aa245417ad4ff2b Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Mon, 20 Apr 2026 09:47:13 +0200 Subject: [PATCH] Add logging timeout size on Vulkan fence wait fail --- Source/Engine/GraphicsDevice/Vulkan/GPUDeviceVulkan.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/Engine/GraphicsDevice/Vulkan/GPUDeviceVulkan.cpp b/Source/Engine/GraphicsDevice/Vulkan/GPUDeviceVulkan.cpp index 760662a93..112a64bf3 100644 --- a/Source/Engine/GraphicsDevice/Vulkan/GPUDeviceVulkan.cpp +++ b/Source/Engine/GraphicsDevice/Vulkan/GPUDeviceVulkan.cpp @@ -2257,6 +2257,7 @@ bool FenceManagerVulkan::WaitForFence(FenceVulkan* fence, float timeoutSeconds) fence->IsSignaled = true; return false; } + LOG(Warning, "vkWaitForFences failed with timeout: {}s", timeoutSeconds); return true; }