Display buffer names instead in GPU Resources explorer

This commit is contained in:
antopilo
2025-01-04 11:24:50 -05:00
parent 55901f8603
commit 8d7f587d7e
7 changed files with 27 additions and 15 deletions

View File

@@ -2564,10 +2564,10 @@ namespace Nuake {
for (auto& buffer : buffers)
{
ImGui::Text(std::to_string(buffer->GetID()).c_str());
ImGui::Text(buffer->GetName().c_str());
ImGui::TableNextColumn();
ImGui::Text(std::to_string(buffer->GetSize()).c_str());
ImGui::TableNextColumn();
}