Merge pull request #9707 from JosJuice/remove-atomic-header

Remove Atomic.h
This commit is contained in:
Mat M
2021-05-14 14:33:24 -04:00
committed by GitHub
13 changed files with 178 additions and 319 deletions

View File

@ -890,7 +890,9 @@ void Renderer::CheckFifoRecording()
RecordVideoMemory();
}
FifoRecorder::GetInstance().EndFrame(CommandProcessor::fifo.CPBase, CommandProcessor::fifo.CPEnd);
FifoRecorder::GetInstance().EndFrame(
CommandProcessor::fifo.CPBase.load(std::memory_order_relaxed),
CommandProcessor::fifo.CPEnd.load(std::memory_order_relaxed));
}
void Renderer::RecordVideoMemory()