mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-06 01:50:38 +00:00
Fix handling of deprecated debug marker object type enums
This commit is contained in:
@@ -1940,7 +1940,7 @@ static ObjData GetObjData(VkDebugReportObjectTypeEXT objType, uint64_t object)
|
||||
else if(objType == VK_DEBUG_REPORT_OBJECT_TYPE_ACCELERATION_STRUCTURE_KHR_EXT)
|
||||
castType = VK_OBJECT_TYPE_ACCELERATION_STRUCTURE_KHR;
|
||||
|
||||
return GetObjData((VkObjectType)objType, object);
|
||||
return GetObjData(castType, object);
|
||||
}
|
||||
|
||||
template <typename SerialiserType>
|
||||
|
||||
Reference in New Issue
Block a user