Revert "Vulkan: Check for vkSetDebugUtilsObjectNameEXT before using it"

This reverts commit 2ab66390f8.
This commit is contained in:
OatmealDome
2022-01-30 21:52:10 -05:00
parent b36c866398
commit a720083a7e
2 changed files with 3 additions and 3 deletions

View File

@ -29,7 +29,7 @@ VKTexture::VKTexture(const TextureConfig& tex_config, VkDeviceMemory device_memo
: AbstractTexture(tex_config), m_device_memory(device_memory), m_image(image), m_layout(layout),
m_compute_layout(compute_layout), m_name(name)
{
if (!m_name.empty() && vkSetDebugUtilsObjectNameEXT)
if (!m_name.empty())
{
VkDebugUtilsObjectNameInfoEXT name_info = {};
name_info.sType = VK_STRUCTURE_TYPE_DEBUG_UTILS_OBJECT_NAME_INFO_EXT;