mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-26 02:00:12 +01:00
tu/rmv: Remove tu_rmv_DebugMarkerSetObjectNameEXT
Replaced by DebugMarkerSetObjectNameEXT from the common Vulkan runtime introduced inf3fe1f2f("vulkan: Implement DebugMarkerSetObjectNameEXT") Fixes:a13860e5("tu: add RMV support") Signed-off-by: Valentine Burley <valentine.burley@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/28125>
This commit is contained in:
parent
ad580a711b
commit
3d279bee0a
1 changed files with 0 additions and 12 deletions
|
|
@ -54,18 +54,6 @@ tu_rmv_InvalidateMappedMemoryRanges(VkDevice _device, uint32_t memoryRangeCount,
|
|||
return VK_SUCCESS;
|
||||
}
|
||||
|
||||
VkResult tu_rmv_DebugMarkerSetObjectNameEXT(VkDevice device,
|
||||
const VkDebugMarkerObjectNameInfoEXT* pNameInfo)
|
||||
{
|
||||
assert(pNameInfo->sType == VK_STRUCTURE_TYPE_DEBUG_MARKER_OBJECT_NAME_INFO_EXT);
|
||||
VkDebugUtilsObjectNameInfoEXT name_info;
|
||||
name_info.sType = VK_STRUCTURE_TYPE_DEBUG_UTILS_OBJECT_NAME_INFO_EXT;
|
||||
name_info.objectType = static_cast<VkObjectType>(pNameInfo->objectType);
|
||||
name_info.objectHandle = pNameInfo->object;
|
||||
name_info.pObjectName = pNameInfo->pObjectName;
|
||||
return tu_rmv_SetDebugUtilsObjectNameEXT(device, &name_info);
|
||||
}
|
||||
|
||||
VkResult tu_rmv_SetDebugUtilsObjectNameEXT(VkDevice _device,
|
||||
const VkDebugUtilsObjectNameInfoEXT* pNameInfo)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue