VideoCommon: add EFB peek/poke stats

This commit is contained in:
Tillmann Karras
2019-03-04 01:25:33 +00:00
parent 13b2b93d3d
commit 05fa667d03
3 changed files with 10 additions and 0 deletions

View File

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