VulkanRenderer: Add support for VK_EXT_debug_report

Some older drivers (Android) don't support VK_EXT_debug_utils
This commit is contained in:
SirLynix
2023-02-26 13:48:25 +01:00
parent 5e6a20f479
commit 20ad93f1c9
10 changed files with 186 additions and 52 deletions

View File

@@ -40,7 +40,7 @@ namespace Nz
m_lastErrorCode = C::CreateHelper(*m_instance, &createInfo, allocator, &m_handle);
if (m_lastErrorCode != VkResult::VK_SUCCESS)
{
NazaraError("Failed to create Vulkan object: " + TranslateVulkanError(m_lastErrorCode));
NazaraError("Failed to create Vulkan instance object: " + TranslateVulkanError(m_lastErrorCode));
return false;
}