Common: Move FPU-related helpers into Common namespace

Makes these utilities' namespace consistent with the majority of the
Common library.
This commit is contained in:
Lioncash
2023-03-21 10:49:35 -04:00
parent d41751c954
commit 0888c93d48
9 changed files with 17 additions and 17 deletions

View File

@ -455,8 +455,8 @@ int FifoManager::RunGpuOnCpu(Core::System& system, int ticks)
{
if (!reset_simd_state)
{
FPURoundMode::SaveSIMDState();
FPURoundMode::LoadDefaultSIMDState();
Common::FPU::SaveSIMDState();
Common::FPU::LoadDefaultSIMDState();
reset_simd_state = true;
}
ReadDataFromFifo(system, fifo.CPReadPointer.load(std::memory_order_relaxed));
@ -484,7 +484,7 @@ int FifoManager::RunGpuOnCpu(Core::System& system, int ticks)
if (reset_simd_state)
{
FPURoundMode::LoadSIMDState();
Common::FPU::LoadSIMDState();
}
// Discard all available ticks as there is nothing to do any more.