summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/Statistics.cpp
diff options
context:
space:
mode:
authordegasus <wickmarkus@web.de>2015-01-17 10:29:10 +0100
committerdegasus <wickmarkus@web.de>2015-01-18 19:47:48 +0100
commit4639d3b1bc3a882461645e0356c894c7d79a28f8 (patch)
tree3857a8a042f6e2a0dc9e40afa246bc6cfe80c5d2 /Source/Core/VideoCommon/Statistics.cpp
parent6cd6e6546f8a6481bd343fb9d1e22238491c2578 (diff)
TexCache: also incude textures within the render target 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);