diff options
| author | Mike Lothian <mike@fireburn.co.uk> | 2023-12-22 13:28:17 +0000 |
|---|---|---|
| committer | Mike Lothian <mike@fireburn.co.uk> | 2024-01-22 03:10:43 +0000 |
| commit | 23e074ff140de6aab84c6a14fcc30a469c64b089 (patch) | |
| tree | 9a7c311d3ac9d6d6cd34ed971005759a4158fefb /src/video_core/vulkan_common/vulkan_wrapper.h | |
| parent | f854ffd0158a3ed2946c18011b4f5f426fdabc07 (diff) | |
Simplify VkResult lookup
Diffstat (limited to 'src/video_core/vulkan_common/vulkan_wrapper.h')
| -rw-r--r-- | src/video_core/vulkan_common/vulkan_wrapper.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/video_core/vulkan_common/vulkan_wrapper.h b/src/video_core/vulkan_common/vulkan_wrapper.h index a0c70797f..757f3c8af 100644 --- a/src/video_core/vulkan_common/vulkan_wrapper.h +++ b/src/video_core/vulkan_common/vulkan_wrapper.h @@ -125,9 +125,6 @@ private: VkResult result; }; -/// Converts a VkResult enum into a rodata string -const char* ToString(VkResult) noexcept; - /// Throws a Vulkan exception if result is not success. inline void Check(VkResult result) { if (result != VK_SUCCESS) { |
