1
0
mirror of synced 2025-01-30 03:27:25 +01:00
ImHex/plugins/builtin/source/content/footer_items.cpp

21 lines
443 B
C++
Raw Normal View History

2021-06-07 18:13:54 +02:00
#include <hex/plugin.hpp>
#include <windows.h>
#include <psapi.h>
namespace hex::plugin::builtin {
void addFooterItems() {
ContentRegistry::Interface::addFooterItem([] {
static float framerate = 0;
if (ImGui::HasSecondPassed()) {
framerate = ImGui::GetIO().Framerate;
}
ImGui::TextUnformatted(hex::format("FPS {0:.2f}", framerate).c_str());
});
}
}