Add naming helper for image views

This commit is contained in:
baldurk
2025-10-13 16:58:09 +01:00
parent 48b19e8ba4
commit 81a367be66
+6
View File
@@ -1062,6 +1062,12 @@ void VulkanGraphicsTest::setName(VkImage obj, const std::string &name)
setName(VK_OBJECT_TYPE_IMAGE, (uint64_t)obj, name);
}
template <>
void VulkanGraphicsTest::setName(VkImageView obj, const std::string &name)
{
setName(VK_OBJECT_TYPE_IMAGE_VIEW, (uint64_t)obj, name);
}
template <>
void VulkanGraphicsTest::setName(VkSampler obj, const std::string &name)
{