camera stuff

This commit is contained in:
Asuro
2025-02-18 02:46:25 +01:00
parent 2c32a261c1
commit b992a826ea
11 changed files with 95 additions and 29 deletions

View File

@@ -9,9 +9,17 @@ enum class PerfCounterType
{
WindowEvents,
GameDelta,
GameLevelUpdate,
Submit,
COUNT
};
constexpr const char* PerfCounterNames[(int32_t)PerfCounterType::COUNT]{
"WindowEvt",
"Delta",
"Level",
"Submit",
};
struct PerfCounter
{
static constexpr int32_t TimeWindow = 128;