summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/CommandProcessor.cpp
diff options
context:
space:
mode:
authordegasus <wickmarkus@web.de>2016-08-08 22:07:18 +0200
committerdegasus <wickmarkus@web.de>2016-08-10 10:07:53 +0200
commit367e1b4d4c90b39978b0920faf31e65a922ff462 (patch)
tree1bc26521285f1dc1401ec37d978699c2d8cd4c89 /Source/Core/VideoCommon/CommandProcessor.cpp
parent7e3c04f069c6e1244863fcc49a56025e15119f8e (diff)
PixelEngine: Drop write-only variables.
Diffstat (limited to 'Source/Core/VideoCommon/CommandProcessor.cpp')
-rw-r--r--Source/Core/VideoCommon/CommandProcessor.cpp16
1 files changed, 0 insertions, 16 deletions
diff --git a/Source/Core/VideoCommon/CommandProcessor.cpp b/Source/Core/VideoCommon/CommandProcessor.cpp
index cd471aae44..6e841d5fca 100644
--- a/Source/Core/VideoCommon/CommandProcessor.cpp
+++ b/Source/Core/VideoCommon/CommandProcessor.cpp
@@ -38,8 +38,6 @@ static u16 m_tokenReg;
static std::atomic<bool> s_interrupt_set;
static std::atomic<bool> s_interrupt_waiting;
-static std::atomic<bool> s_interrupt_token_waiting;
-static std::atomic<bool> s_interrupt_finish_waiting;
static bool IsOnThread()
{
@@ -65,8 +63,6 @@ void DoState(PointerWrap& p)
p.Do(s_interrupt_set);
p.Do(s_interrupt_waiting);
- p.Do(s_interrupt_token_waiting);
- p.Do(s_interrupt_finish_waiting);
}
static inline void WriteLow(volatile u32& _reg, u16 lowbits)
@@ -112,8 +108,6 @@ void Init()
s_interrupt_set.store(false);
s_interrupt_waiting.store(false);
- s_interrupt_finish_waiting.store(false);
- s_interrupt_token_waiting.store(false);
et_UpdateInterrupts = CoreTiming::RegisterEvent("CPInterrupt", UpdateInterrupts_Wrapper);
}
@@ -356,16 +350,6 @@ bool IsInterruptWaiting()
return s_interrupt_waiting.load();
}
-void SetInterruptTokenWaiting(bool waiting)
-{
- s_interrupt_token_waiting.store(waiting);
-}
-
-void SetInterruptFinishWaiting(bool waiting)
-{
- s_interrupt_finish_waiting.store(waiting);
-}
-
void SetCPStatusFromGPU()
{
// breakpoint