early-access version 3493
This commit is contained in:
parent
29fcd566a6
commit
e16291336e
3 changed files with 4 additions and 2 deletions
|
@ -222,7 +222,7 @@ find_package(ZLIB 1.2 REQUIRED)
|
||||||
find_package(zstd 1.5 REQUIRED)
|
find_package(zstd 1.5 REQUIRED)
|
||||||
|
|
||||||
if (NOT YUZU_USE_EXTERNAL_VULKAN_HEADERS)
|
if (NOT YUZU_USE_EXTERNAL_VULKAN_HEADERS)
|
||||||
find_package(Vulkan 1.3.238 REQUIRED)
|
find_package(Vulkan 1.3.246 REQUIRED)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if (ENABLE_LIBUSB)
|
if (ENABLE_LIBUSB)
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
yuzu emulator early access
|
yuzu emulator early access
|
||||||
=============
|
=============
|
||||||
|
|
||||||
This is the source code for early-access 3492.
|
This is the source code for early-access 3493.
|
||||||
|
|
||||||
## Legal Notice
|
## Legal Notice
|
||||||
|
|
||||||
|
|
|
@ -375,6 +375,8 @@ const char* ToString(VkResult result) noexcept {
|
||||||
return "VK_RESULT_MAX_ENUM";
|
return "VK_RESULT_MAX_ENUM";
|
||||||
case VkResult::VK_ERROR_COMPRESSION_EXHAUSTED_EXT:
|
case VkResult::VK_ERROR_COMPRESSION_EXHAUSTED_EXT:
|
||||||
return "VK_ERROR_COMPRESSION_EXHAUSTED_EXT";
|
return "VK_ERROR_COMPRESSION_EXHAUSTED_EXT";
|
||||||
|
case VkResult::VK_ERROR_INCOMPATIBLE_SHADER_BINARY_EXT:
|
||||||
|
return "VK_ERROR_INCOMPATIBLE_SHADER_BINARY_EXT";
|
||||||
}
|
}
|
||||||
return "Unknown";
|
return "Unknown";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue