This commit is contained in:
Jan Racek
2026-03-24 13:01:47 +01:00
parent 55c1d2c39b
commit e51c06b012
51 changed files with 8111 additions and 491 deletions

View File

@@ -2,6 +2,8 @@
#include <stdint.h>
#ifdef PSXSPLASH_PROFILER
namespace psxsplash::debug {
enum ProfilerSection {
@@ -21,7 +23,6 @@ public:
void initialize();
void reset();
void dumpToTTY();
void setSectionTime(ProfilerSection section, uint32_t time) {
sectionTimes[section] = time;
@@ -42,3 +43,5 @@ private:
};
} // namespace psxsplash::debug
#endif // PSXSPLASH_PROFILER