Display a specific message for resources with no usage tracked

* Currently we only track usage for buffers and textures.
This commit is contained in:
baldurk
2025-07-31 17:10:14 +01:00
parent 9bfcb76e0b
commit dbeeb67459
6 changed files with 62 additions and 15 deletions
+1 -1
View File
@@ -529,7 +529,7 @@ rdcarray<EventUsage> ReplayController::GetUsage(ResourceId id)
id = m_pDevice->GetLiveID(id);
if(id == ResourceId())
return rdcarray<EventUsage>();
return {EventUsage(0, ResourceUsage::Unused)};
return m_pDevice->GetUsage(id);
}