summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/Fifo.cpp
diff options
context:
space:
mode:
authorcomex <comexk@gmail.com>2014-08-26 20:17:27 -0400
committercomex <comexk@gmail.com>2014-08-26 20:17:27 -0400
commit75b9d6da482aaa27df2865092a7dbf67f8333e46 (patch)
treeac321b590b5db2d2e841567be8b1720896427b60 /Source/Core/VideoCommon/Fifo.cpp
parentf52888d3ec9a7ca8edf673293c28b28b0fd3516b (diff)
parente31d6feaa23afc00a84762300e37d2f634a659ff (diff)
Merge pull request #867 from comex/gpu-determinism-pr1
Some small preparatory changes to VideoCommon for GPU thread determinism mode.
Diffstat (limited to 'Source/Core/VideoCommon/Fifo.cpp')
-rw-r--r--Source/Core/VideoCommon/Fifo.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Core/VideoCommon/Fifo.cpp b/Source/Core/VideoCommon/Fifo.cpp
index 3460b25956..165cd8e239 100644
--- a/Source/Core/VideoCommon/Fifo.cpp
+++ b/Source/Core/VideoCommon/Fifo.cpp
@@ -148,7 +148,7 @@ void RunGpuLoop()
VideoFifo_CheckAsyncRequest();
- CommandProcessor::SetCpStatus();
+ CommandProcessor::SetCPStatusFromGPU();
Common::AtomicStore(CommandProcessor::VITicks, CommandProcessor::m_cpClockOrigin);
@@ -184,7 +184,7 @@ void RunGpuLoop()
Common::AtomicStore(fifo.SafeCPReadPointer, fifo.CPReadPointer);
}
- CommandProcessor::SetCpStatus();
+ CommandProcessor::SetCPStatusFromGPU();
// This call is pretty important in DualCore mode and must be called in the FIFO Loop.
// If we don't, s_swapRequested or s_efbAccessRequested won't be set to false
@@ -247,5 +247,5 @@ void RunGpu()
fifo.CPReadWriteDistance -= 32;
}
- CommandProcessor::SetCpStatus();
+ CommandProcessor::SetCPStatusFromGPU();
}