Merge pull request #12712 from Dentomologist/remove_defined_out_code

Remove defined-out code
This commit is contained in:
Tilka
2024-10-19 19:36:19 +01:00
committed by GitHub
7 changed files with 1 additions and 116 deletions

View File

@ -1051,19 +1051,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.