summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/PixelEngine.cpp
diff options
context:
space:
mode:
authormagumagu <magumagu9@gmail.com>2014-06-01 01:56:09 -0700
committermagumagu <magumagu9@gmail.com>2014-06-01 01:56:09 -0700
commit0aecd9504e8ccbf52b89032be9d15b25ff14543d (patch)
tree3ce101b78355d1b3e45bfda58497aab5f1882b30 /Source/Core/VideoCommon/PixelEngine.cpp
parent31eedb2f79318002a4772087f96eb034f94787a1 (diff)
Video backends: remove dead code.
Diffstat (limited to 'Source/Core/VideoCommon/PixelEngine.cpp')
-rw-r--r--Source/Core/VideoCommon/PixelEngine.cpp31
1 files changed, 0 insertions, 31 deletions
diff --git a/Source/Core/VideoCommon/PixelEngine.cpp b/Source/Core/VideoCommon/PixelEngine.cpp
index 4d913dd836..531ef21df6 100644
--- a/Source/Core/VideoCommon/PixelEngine.cpp
+++ b/Source/Core/VideoCommon/PixelEngine.cpp
@@ -328,37 +328,6 @@ void SetFinish()
INFO_LOG(PIXELENGINE, "VIDEO Set Finish");
}
-//This function is used in CommandProcessor when write CTRL_REGISTER and the new fifo is attached.
-void ResetSetFinish()
-{
- //if SetFinish happened but PE_CTRL_REGISTER not, I reset the interrupt else
- //remove event from the queue
- if (g_bSignalFinishInterrupt)
- {
- UpdateFinishInterrupt(false);
- g_bSignalFinishInterrupt = false;
- }
- else
- {
- CoreTiming::RemoveEvent(et_SetFinishOnMainThread);
- }
- CommandProcessor::interruptFinishWaiting = false;
-}
-
-void ResetSetToken()
-{
- if (g_bSignalTokenInterrupt)
- {
- UpdateTokenInterrupt(false);
- g_bSignalTokenInterrupt = 0;
- }
- else
- {
- CoreTiming::RemoveEvent(et_SetTokenOnMainThread);
- }
- CommandProcessor::interruptTokenWaiting = false;
-}
-
UPEAlphaReadReg GetAlphaReadMode()
{
return m_AlphaRead;