mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-12 13:00:32 +00:00
Add naming helper for image views
This commit is contained in:
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user