summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGPUCode <geoster3d@gmail.com>2023-06-05 19:07:05 +0300
committerbunnei <bunneidev@gmail.com>2023-06-27 18:00:09 -0700
commit220a42896d350399f1f2d77432aa571ade3c9cdd (patch)
tree276b2f55caecfef74d25223bcb2c0bbf953a4ada
parent1522b956583aab463bd1576652d1794fe989437d (diff)
renderer_vulkan: Don't assume debug tool with debug renderer
* Causes crashes because mali drivers don't support debug utils
-rw-r--r--src/video_core/vulkan_common/vulkan_device.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/vulkan_common/vulkan_device.h b/src/video_core/vulkan_common/vulkan_device.h
index 13ca24ef5..7be631122 100644
--- a/src/video_core/vulkan_common/vulkan_device.h
+++ b/src/video_core/vulkan_common/vulkan_device.h
@@ -523,7 +523,7 @@ public:
/// Returns true when a known debugging tool is attached.
bool HasDebuggingToolAttached() const {
- return has_renderdoc || has_nsight_graphics || Settings::values.renderer_debug.GetValue();
+ return has_renderdoc || has_nsight_graphics;
}
/// @returns True if compute pipelines can cause crashing.