Update aurora & increase map resolution

This commit is contained in:
Luke Street
2026-04-01 00:53:08 -06:00
parent afcabde36e
commit c027b6ef6a
7 changed files with 47 additions and 17 deletions
+4 -1
View File
@@ -124,10 +124,13 @@ namespace dusk {
BytesToString(stats->lastIndexSize)));
ImGuiStringViewText(fmt::format(FMT_STRING("Storage size: {}\n"),
BytesToString(stats->lastStorageSize)));
ImGuiStringViewText(fmt::format(FMT_STRING("Tex upload size: {}\n"),
BytesToString(stats->lastTextureUploadSize)));
ImGuiStringViewText(fmt::format(
FMT_STRING("Total: {}\n"),
BytesToString(stats->lastVertSize + stats->lastUniformSize +
stats->lastIndexSize + stats->lastStorageSize)));
stats->lastIndexSize + stats->lastStorageSize +
stats->lastTextureUploadSize)));
}
ImGui::End();
}