diff options
| author | Stevoisiak <Stevoisiak@gmail.com> | 2015-02-15 14:43:31 -0500 |
|---|---|---|
| committer | Stevoisiak <Stevoisiak@gmail.com> | 2015-02-25 10:48:21 -0500 |
| commit | 93b16a4a2d5f3e6d467d1315c461aff12852b26c (patch) | |
| tree | 0993e6ce422ae33a850466e8da285421a462e79f /Source/Core/VideoCommon/Statistics.cpp | |
| parent | b8edd8aedc75ae4e2abd8c5558af94e98c7bebcb (diff) | |
Formatting/Whitespace Cleanup
Various fixes to formatting and whitespace
Diffstat (limited to 'Source/Core/VideoCommon/Statistics.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/Statistics.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Core/VideoCommon/Statistics.cpp b/Source/Core/VideoCommon/Statistics.cpp index 949b50558f..1bdbbb7bb3 100644 --- a/Source/Core/VideoCommon/Statistics.cpp +++ b/Source/Core/VideoCommon/Statistics.cpp @@ -46,9 +46,9 @@ std::string Statistics::ToString() str += StringFromFormat("CP loads (DL): %i\n", stats.thisFrame.numCPLoadsInDL); str += StringFromFormat("BP loads: %i\n", stats.thisFrame.numBPLoads); str += StringFromFormat("BP loads (DL): %i\n", stats.thisFrame.numBPLoadsInDL); - str += StringFromFormat("Vertex streamed: %i kB\n", stats.thisFrame.bytesVertexStreamed/1024); - str += StringFromFormat("Index streamed: %i kB\n", stats.thisFrame.bytesIndexStreamed/1024); - str += StringFromFormat("Uniform streamed: %i kB\n", stats.thisFrame.bytesUniformStreamed/1024); + str += StringFromFormat("Vertex streamed: %i kB\n", stats.thisFrame.bytesVertexStreamed / 1024); + str += StringFromFormat("Index streamed: %i kB\n", stats.thisFrame.bytesIndexStreamed / 1024); + str += StringFromFormat("Uniform streamed: %i kB\n", stats.thisFrame.bytesUniformStreamed / 1024); str += StringFromFormat("Vertex Loaders: %i\n", stats.numVertexLoaders); std::string vertex_list; |
