summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/VertexManagerBase.cpp
diff options
context:
space:
mode:
authorDentomologist <dentomologist@gmail.com>2024-04-15 11:54:35 -0700
committerDentomologist <dentomologist@gmail.com>2024-04-15 12:17:35 -0700
commitdbaa844e576acb48168d36d81fb4ca1e4a96d0b2 (patch)
tree7ef7fbca1883e110b21b9286bf5b657475a91d69 /Source/Core/VideoCommon/VertexManagerBase.cpp
parentdbc7e035773d97293f572b9fe15fdcb877fc3965 (diff)
Remove defined-out code
Diffstat (limited to 'Source/Core/VideoCommon/VertexManagerBase.cpp')
-rw-r--r--Source/Core/VideoCommon/VertexManagerBase.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/Source/Core/VideoCommon/VertexManagerBase.cpp b/Source/Core/VideoCommon/VertexManagerBase.cpp
index 94d609c23f..535539519d 100644
--- a/Source/Core/VideoCommon/VertexManagerBase.cpp
+++ b/Source/Core/VideoCommon/VertexManagerBase.cpp
@@ -1025,19 +1025,6 @@ void VertexManagerBase::OnEndFrame()
}
}
-#if 0
- {
- 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_FMT(VIDEO, "CPU EFB accesses in last frame: {}", ss.str());
- }
- {
- 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_FMT(VIDEO, "Scheduled command buffer kicks: {}", ss.str());
- }
-#endif
-
m_cpu_accesses_this_frame.clear();
// We invalidate the pipeline object at the start of the frame.