mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 12:19:12 +00:00
VideoCommon: add EFB peek/poke stats
This commit is contained in:
parent
13b2b93d3d
commit
05fa667d03
3 changed files with 10 additions and 0 deletions
|
@ -85,6 +85,8 @@ void Statistics::Display()
|
|||
DRAW_STAT("Index streamed", "%i kB", stats.thisFrame.bytesIndexStreamed / 1024);
|
||||
DRAW_STAT("Uniform streamed", "%i kB", stats.thisFrame.bytesUniformStreamed / 1024);
|
||||
DRAW_STAT("Vertex Loaders", "%d", stats.numVertexLoaders);
|
||||
DRAW_STAT("EFB peeks:", "%d", stats.thisFrame.numEFBPeeks);
|
||||
DRAW_STAT("EFB pokes:", "%d", stats.thisFrame.numEFBPokes);
|
||||
|
||||
#undef DRAW_STAT
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue