mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-01 13:48:56 +00:00
VideoCommon: Add statistics for draw done and token commands
This commit is contained in:
parent
f106bc150a
commit
39569392bd
3 changed files with 10 additions and 0 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue