diff options
Diffstat (limited to 'Source/Core/VideoBackends/Software/SWmain.cpp')
| -rw-r--r-- | Source/Core/VideoBackends/Software/SWmain.cpp | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/Source/Core/VideoBackends/Software/SWmain.cpp b/Source/Core/VideoBackends/Software/SWmain.cpp index 59162c2f06..a2ed4ff3a0 100644 --- a/Source/Core/VideoBackends/Software/SWmain.cpp +++ b/Source/Core/VideoBackends/Software/SWmain.cpp @@ -44,15 +44,6 @@ #define VSYNC_ENABLED 0 -static std::atomic<bool> s_swapRequested; - -static volatile struct -{ - u32 xfbAddr; - u32 fbWidth; - u32 fbHeight; -} s_beginFieldArgs; - namespace SW { @@ -73,7 +64,7 @@ public: return EfbInterface::perf_values[type]; }; void FlushResults() override {} - bool IsFlushed() const {return true;}; + bool IsFlushed() const override { return true; }; }; class TextureCache : public TextureCacheBase @@ -136,10 +127,6 @@ class FramebufferManager : public FramebufferManagerBase } }; -static std::atomic<bool> fifoStateRun; -static std::atomic<bool> emuRunningState; -static std::mutex m_csSWVidOccupied; - std::string VideoSoftware::GetName() const { return "Software Renderer"; |
