ImHex/plugins/builtin/source/content/footer_items.cpp

18 lines
402 B
C++
Raw Normal View History

2021-06-07 16:13:54 +00:00
#include <hex/plugin.hpp>
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());
});
}
}