diff options
| author | Pierre Bourdon <delroth@gmail.com> | 2019-12-30 10:59:14 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-12-30 10:59:14 +0100 |
| commit | 7a6a4510f6eed48652200f8c83e79723ae3581f2 (patch) | |
| tree | 6abb193c5bb8ef35b627d023648b18a11a16eddc /Source/Core/VideoCommon/VertexManagerBase.cpp | |
| parent | 084344aa5d9a39fc05cfe952005e530766c3c29c (diff) | |
| parent | 11339d77c6835dd908b86a92412686c46435e006 (diff) | |
Merge pull request #8362 from GerbilSoft/feature/string-optimizations.2019-09-11
Various string and other optimizations
Diffstat (limited to 'Source/Core/VideoCommon/VertexManagerBase.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/VertexManagerBase.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/VideoCommon/VertexManagerBase.cpp b/Source/Core/VideoCommon/VertexManagerBase.cpp index 5addf803d5..7fcd4935c0 100644 --- a/Source/Core/VideoCommon/VertexManagerBase.cpp +++ b/Source/Core/VideoCommon/VertexManagerBase.cpp @@ -768,12 +768,12 @@ void VertexManagerBase::OnEndFrame() #if 0 { - std::stringstream ss; + std::ostringstream ss; std::for_each(m_cpu_accesses_this_frame.begin(), m_cpu_accesses_this_frame.end(), [&ss](u32 idx) { ss << idx << ","; }); WARN_LOG(VIDEO, "CPU EFB accesses in last frame: %s", ss.str().c_str()); } { - std::stringstream ss; + std::ostringstream ss; std::for_each(m_scheduled_command_buffer_kicks.begin(), m_scheduled_command_buffer_kicks.end(), [&ss](u32 idx) { ss << idx << ","; }); WARN_LOG(VIDEO, "Scheduled command buffer kicks: %s", ss.str().c_str()); } |
