diff options
| author | Connor McLaughlin <stenzek@gmail.com> | 2019-03-04 15:28:22 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-03-04 15:28:22 +1000 |
| commit | a59010fa29ab10ca031bea87fc5df165e70e2dff (patch) | |
| tree | fb5f9c6a11b5d8a7cf3fd75e9f2fcf6c7a263561 /Source/Core/VideoCommon/Statistics.cpp | |
| parent | 191ef76da2880e90cd95fc6ffa8e98c237d8b724 (diff) | |
| parent | 05fa667d036b0e2aeec71c4c51cff9687de6f477 (diff) | |
Merge pull request #7851 from Tilka/efb_stats
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 |
