From 8788034c4cb6e9d8c7c4b6ae9729c07d2e3139c4 Mon Sep 17 00:00:00 2001 From: lizzie Date: Tue, 28 Apr 2026 18:57:37 +0000 Subject: [PATCH] fx --- src/video_core/vulkan_common/vulkan_device.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/video_core/vulkan_common/vulkan_device.cpp b/src/video_core/vulkan_common/vulkan_device.cpp index 4766c7ead4..273a554524 100644 --- a/src/video_core/vulkan_common/vulkan_device.cpp +++ b/src/video_core/vulkan_common/vulkan_device.cpp @@ -771,8 +771,7 @@ VkFormat Device::GetSupportedFormat(VkFormat wanted_format, VkFormatFeatureFlags } void Device::ReportLoss() const { - LOG_CRITICAL(Render_Vulkan, "Device loss occurred!"); - + LOG_CRITICAL(Render_Vulkan, "Device loss occurred! {},{}", extensions.device_fault, properties.device_fault.deviceFault); if (extensions.device_fault) { VkDeviceFaultCountsEXT fault_counts{ .sType = VK_STRUCTURE_TYPE_DEVICE_FAULT_COUNTS_EXT @@ -820,8 +819,7 @@ void Device::ReportLoss() const { s += "\n"; } LOG_INFO(Render_Vulkan, "{}", s); - } else if () - + } // Wait for the log to flush and for Nsight Aftermath to dump the results std::this_thread::sleep_for(std::chrono::seconds{15}); }