Remove unused code

This commit is contained in:
Wojtek Figat
2020-12-30 00:52:07 +01:00
parent a082d52543
commit 4ec3e6aed9
9 changed files with 85 additions and 124 deletions

View File

@@ -199,7 +199,7 @@ VkCompareOp RenderToolsVulkan::ComparisonFuncToVkCompareOp[static_cast<int32>(Co
void RenderToolsVulkan::SetObjectName(VkDevice device, uint64 objectHandle, VkObjectType objectType, const String& name)
{
#if VULKAN_SUPPORTS_DEBUG_UTILS
#if VK_EXT_debug_utils
auto str = name.ToStringAnsi();
SetObjectName(device, objectHandle, objectType, str.Get());
#endif