vulkan_wrapper: Fix SetObjectName() always indicating objects as images
We should be using the passed in object type instead.
This commit is contained in:
parent
d6c799494c
commit
8c82c594f0
|
@ -202,7 +202,7 @@ void SetObjectName(const DeviceDispatch* dld, VkDevice device, T handle, VkObjec
|
||||||
const VkDebugUtilsObjectNameInfoEXT name_info{
|
const VkDebugUtilsObjectNameInfoEXT name_info{
|
||||||
.sType = VK_STRUCTURE_TYPE_DEBUG_UTILS_OBJECT_NAME_INFO_EXT,
|
.sType = VK_STRUCTURE_TYPE_DEBUG_UTILS_OBJECT_NAME_INFO_EXT,
|
||||||
.pNext = nullptr,
|
.pNext = nullptr,
|
||||||
.objectType = VK_OBJECT_TYPE_IMAGE,
|
.objectType = type,
|
||||||
.objectHandle = reinterpret_cast<u64>(handle),
|
.objectHandle = reinterpret_cast<u64>(handle),
|
||||||
.pObjectName = name,
|
.pObjectName = name,
|
||||||
};
|
};
|
||||||
|
|
Reference in New Issue