diff options
| author | Admiral H. Curtiss <pikachu025@gmail.com> | 2022-09-28 21:56:54 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-09-28 21:56:54 +0200 |
| commit | 4de70f1e99979888b7d776f3dca4851043bbe5b1 (patch) | |
| tree | d9f45c7d017c72398ffdf035a44b829d3f318147 /Source/Core/VideoCommon/Statistics.cpp | |
| parent | dd3db9437cbb48eebb6f17a97f1f985781f2b674 (diff) | |
| parent | 39569392bd3b14a5f14d52866201e96c21b88025 (diff) | |
Merge pull request #11099 from Pokechu22/draw_done_and_token_stats
VideoCommon: Add statistics for draw done and token commands
Diffstat (limited to 'Source/Core/VideoCommon/Statistics.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/Statistics.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/Core/VideoCommon/Statistics.cpp b/Source/Core/VideoCommon/Statistics.cpp index 7b4a785c6f..a6b7eb8167 100644 --- a/Source/Core/VideoCommon/Statistics.cpp +++ b/Source/Core/VideoCommon/Statistics.cpp @@ -93,6 +93,8 @@ void Statistics::Display() const draw_statistic("Vertex Loaders", "%d", num_vertex_loaders); draw_statistic("EFB peeks:", "%d", this_frame.num_efb_peeks); draw_statistic("EFB pokes:", "%d", this_frame.num_efb_pokes); + draw_statistic("Draw dones:", "%d", this_frame.num_draw_done); + draw_statistic("Tokens:", "%d/%d", this_frame.num_token, this_frame.num_token_int); ImGui::Columns(1); |
