VideoCommon: Add statistics for draw done and token commands

This commit is contained in:
Pokechu22
2022-09-26 16:11:12 -07:00
parent f106bc150a
commit 39569392bd
3 changed files with 10 additions and 0 deletions

View File

@ -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);