early-access version 3236
This commit is contained in:
parent
58e0fdc5a5
commit
3014f5db9c
2 changed files with 13 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
||||||
yuzu emulator early access
|
yuzu emulator early access
|
||||||
=============
|
=============
|
||||||
|
|
||||||
This is the source code for early-access 3235.
|
This is the source code for early-access 3236.
|
||||||
|
|
||||||
## Legal Notice
|
## Legal Notice
|
||||||
|
|
||||||
|
|
|
@ -314,6 +314,18 @@ const char* ToString(VkResult result) noexcept {
|
||||||
return "VK_ERROR_VALIDATION_FAILED_EXT";
|
return "VK_ERROR_VALIDATION_FAILED_EXT";
|
||||||
case VkResult::VK_ERROR_INVALID_SHADER_NV:
|
case VkResult::VK_ERROR_INVALID_SHADER_NV:
|
||||||
return "VK_ERROR_INVALID_SHADER_NV";
|
return "VK_ERROR_INVALID_SHADER_NV";
|
||||||
|
case VkResult::VK_ERROR_IMAGE_USAGE_NOT_SUPPORTED_KHR:
|
||||||
|
return "VK_ERROR_IMAGE_USAGE_NOT_SUPPORTED_KHR";
|
||||||
|
case VkResult::VK_ERROR_VIDEO_PICTURE_LAYOUT_NOT_SUPPORTED_KHR:
|
||||||
|
return "VK_ERROR_VIDEO_PICTURE_LAYOUT_NOT_SUPPORTED_KHR";
|
||||||
|
case VkResult::VK_ERROR_VIDEO_PROFILE_OPERATION_NOT_SUPPORTED_KHR:
|
||||||
|
return "VK_ERROR_VIDEO_PROFILE_OPERATION_NOT_SUPPORTED_KHR";
|
||||||
|
case VkResult::VK_ERROR_VIDEO_PROFILE_FORMAT_NOT_SUPPORTED_KHR:
|
||||||
|
return "VK_ERROR_VIDEO_PROFILE_FORMAT_NOT_SUPPORTED_KHR";
|
||||||
|
case VkResult::VK_ERROR_VIDEO_PROFILE_CODEC_NOT_SUPPORTED_KHR:
|
||||||
|
return "VK_ERROR_VIDEO_PROFILE_CODEC_NOT_SUPPORTED_KHR";
|
||||||
|
case VkResult::VK_ERROR_VIDEO_STD_VERSION_NOT_SUPPORTED_KHR:
|
||||||
|
return "VK_ERROR_VIDEO_STD_VERSION_NOT_SUPPORTED_KHR";
|
||||||
case VkResult::VK_ERROR_INVALID_DRM_FORMAT_MODIFIER_PLANE_LAYOUT_EXT:
|
case VkResult::VK_ERROR_INVALID_DRM_FORMAT_MODIFIER_PLANE_LAYOUT_EXT:
|
||||||
return "VK_ERROR_INVALID_DRM_FORMAT_MODIFIER_PLANE_LAYOUT_EXT";
|
return "VK_ERROR_INVALID_DRM_FORMAT_MODIFIER_PLANE_LAYOUT_EXT";
|
||||||
case VkResult::VK_ERROR_FRAGMENTATION_EXT:
|
case VkResult::VK_ERROR_FRAGMENTATION_EXT:
|
||||||
|
|
Loading…
Reference in a new issue