summaryrefslogtreecommitdiffstats
path: root/src/core/perf_stats.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2018-04-20math_util: Remove the Clamp() functionLioncash1-1/+2
C++17 adds clamp() to the standard library, so we can remove ours in favor of it.
2018-01-17UI: Fix frame rate perf statsJames Rowe1-1/+1
Adds in a missing EndGameFrame when nvdrv swaps buffers
2018-01-13Remove settings issues in sdl and fix a few files that broke in mingwJames Rowe1-2/+1
2017-02-27PerfStats: Re-order and document members betterYuri Kunde Schlesner1-1/+1
2017-02-27Core: Re-write frame limiterYuri Kunde Schlesner1-0/+33
Now based on std::chrono, and also works in terms of emulated time instead of frames, so we can in the future frame-limit even when the display is disabled, etc. The frame limiter can also be enabled along with v-sync now, which should be useful for those with displays running at more than 60 Hz.
2017-02-27Core: Make PerfStats internally lockedYuri Kunde Schlesner1-0/+11
More ergonomic to use and will be required for upcoming changes.
2017-02-27PerfStats: Add method to get the instantaneous time ratioYuri Kunde Schlesner1-3/+11
2017-02-27Add performance statistics to status barYuri Kunde Schlesner1-0/+53