mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-09 01:28:57 +00:00
Merge pull request #13398 from jordan-woyak/perf-tracker
PerformanceTracker: Eliminate mutex. General cleanups.
This commit is contained in:
commit
28f1beeca8
4 changed files with 125 additions and 204 deletions
|
@ -45,7 +45,7 @@ public:
|
|||
private:
|
||||
PerformanceTracker m_fps_counter{"render_times.txt"};
|
||||
PerformanceTracker m_vps_counter{"vblank_times.txt"};
|
||||
PerformanceTracker m_speed_counter{std::nullopt, 1000000};
|
||||
PerformanceTracker m_speed_counter{std::nullopt, std::chrono::seconds{1}};
|
||||
|
||||
double m_graph_max_time = 0.0;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue