summaryrefslogtreecommitdiff
path: root/Source/Core/VideoBackends
diff options
context:
space:
mode:
authordegasus <wickmarkus@web.de>2015-03-05 21:14:46 +0100
committerdegasus <wickmarkus@web.de>2015-04-06 12:35:35 +0200
commitb020ae1c5db4e2e198d1beea91c75219a251a167 (patch)
treed9f7b069ffde368ecc0d47a5c2b0820f18bc2c80 /Source/Core/VideoBackends
parent9bdaa00e2dc18c06dcb9882d7f0caf372ed5990d (diff)
Fifo: rewrite sync on idle skipping hack
Now it's done without a busy loop
Diffstat (limited to 'Source/Core/VideoBackends')
-rw-r--r--Source/Core/VideoBackends/Software/SWmain.cpp5
-rw-r--r--Source/Core/VideoBackends/Software/VideoBackend.h2
2 files changed, 1 insertions, 6 deletions
diff --git a/Source/Core/VideoBackends/Software/SWmain.cpp b/Source/Core/VideoBackends/Software/SWmain.cpp
index 497d26be00..784fe6d07b 100644
--- a/Source/Core/VideoBackends/Software/SWmain.cpp
+++ b/Source/Core/VideoBackends/Software/SWmain.cpp
@@ -360,11 +360,6 @@ void VideoSoftware::Video_GatherPipeBursted()
SWCommandProcessor::GatherPipeBursted();
}
-bool VideoSoftware::Video_IsPossibleWaitingSetDrawDone()
-{
- return false;
-}
-
void VideoSoftware::RegisterCPMMIO(MMIO::Mapping* mmio, u32 base)
{
SWCommandProcessor::RegisterMMIO(mmio, base);
diff --git a/Source/Core/VideoBackends/Software/VideoBackend.h b/Source/Core/VideoBackends/Software/VideoBackend.h
index 0edb3bd4df..8697e27c98 100644
--- a/Source/Core/VideoBackends/Software/VideoBackend.h
+++ b/Source/Core/VideoBackends/Software/VideoBackend.h
@@ -45,7 +45,7 @@ class VideoSoftware : public VideoBackend
void Video_SetRendering(bool bEnabled) override;
void Video_GatherPipeBursted() override;
- bool Video_IsPossibleWaitingSetDrawDone() override;
+ void Video_Sync() override {}
void RegisterCPMMIO(MMIO::Mapping* mmio, u32 base) override;