summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/Statistics.cpp
diff options
context:
space:
mode:
authorMarkus Wick <markus+github@selfnet.de>2015-01-19 00:12:22 +0100
committerMarkus Wick <markus+github@selfnet.de>2015-01-19 00:12:22 +0100
commit5357b9c95ff2458e3b8c3112e303924a0d460ce6 (patch)
treeda7ceb7f8c1d4b8c9d08182d14ecf1edfe94589c /Source/Core/VideoCommon/Statistics.cpp
parent37a770bb9f23404cbdc75e8cc2df31dfecb97057 (diff)
parent9f13a77799bc8d91e3022f334900ffb542bc1b43 (diff)
Merge pull request #1899 from degasus/texcache
Texture Pool
Diffstat (limited to 'Source/Core/VideoCommon/Statistics.cpp')
-rw-r--r--Source/Core/VideoCommon/Statistics.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/Core/VideoCommon/Statistics.cpp b/Source/Core/VideoCommon/Statistics.cpp
index 9857c7c39d..949b50558f 100644
--- a/Source/Core/VideoCommon/Statistics.cpp
+++ b/Source/Core/VideoCommon/Statistics.cpp
@@ -28,6 +28,7 @@ std::string Statistics::ToString()
{
std::string str;
str += StringFromFormat("Textures created: %i\n", stats.numTexturesCreated);
+ str += StringFromFormat("Textures uploaded: %i\n", stats.numTexturesUploaded);
str += StringFromFormat("Textures alive: %i\n", stats.numTexturesAlive);
str += StringFromFormat("pshaders created: %i\n", stats.numPixelShadersCreated);
str += StringFromFormat("pshaders alive: %i\n", stats.numPixelShadersAlive);