diff options
| author | Tillmann Karras <tilkax@gmail.com> | 2019-03-04 01:25:33 +0000 |
|---|---|---|
| committer | Tillmann Karras <tilkax@gmail.com> | 2019-03-04 02:49:59 +0000 |
| commit | 05fa667d036b0e2aeec71c4c51cff9687de6f477 (patch) | |
| tree | 69ed5e7902c8fc72fd3092e1efbd5f064e59d0da /Source/Core/VideoCommon/Statistics.cpp | |
| parent | 13b2b93d3d12e4c8491ed82c63d52a24a4849476 (diff) | |
VideoCommon: add EFB peek/poke stats
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 af122bfcdb..716dee4f73 100644 --- a/Source/Core/VideoCommon/Statistics.cpp +++ b/Source/Core/VideoCommon/Statistics.cpp @@ -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 |
