diff options
| author | liamwhite <liamwhite@users.noreply.github.com> | 2023-05-07 14:09:03 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-05-07 14:09:03 -0400 |
| commit | cb49c3b64cb0a4391ca33eb95526ceb3b2ba244a (patch) | |
| tree | 6b9bda6059babf2812572f493a530454da7fbe06 /src/video_core/vulkan_common/vulkan_device.h | |
| parent | 35862b21d6c41effd92d0684f33ea880f62d151c (diff) | |
| parent | ca6bf06ef7e1a8b198167822a510b9f5ee43dec7 (diff) | |
Merge pull request #10172 from Kelebek1/debug_validation_names
Log object names with debug renderer, add a GPU address to ImageViews
Diffstat (limited to 'src/video_core/vulkan_common/vulkan_device.h')
| -rw-r--r-- | src/video_core/vulkan_common/vulkan_device.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/video_core/vulkan_common/vulkan_device.h b/src/video_core/vulkan_common/vulkan_device.h index 7d5018151..5f1c63ff9 100644 --- a/src/video_core/vulkan_common/vulkan_device.h +++ b/src/video_core/vulkan_common/vulkan_device.h @@ -10,6 +10,7 @@ #include <vector> #include "common/common_types.h" +#include "common/settings.h" #include "video_core/vulkan_common/vulkan_wrapper.h" // Define all features which may be used by the implementation here. @@ -510,7 +511,7 @@ public: /// Returns true when a known debugging tool is attached. bool HasDebuggingToolAttached() const { - return has_renderdoc || has_nsight_graphics; + return has_renderdoc || has_nsight_graphics || Settings::values.renderer_debug.GetValue(); } /// Returns true when the device does not properly support cube compatibility. |
