mirror of
https://github.com/coah80/LegacyVulkEdition.git
synced 2026-06-16 22:31:52 +00:00
13 lines
201 B
C++
13 lines
201 B
C++
#pragma once
|
|
|
|
class PerformanceTimer
|
|
{
|
|
private:
|
|
LARGE_INTEGER m_qwStartTime;
|
|
float m_fSecsPerTick;
|
|
|
|
public:
|
|
PerformanceTimer();
|
|
void Reset();
|
|
void PrintElapsedTime(const wstring &description);
|
|
}; |