summaryrefslogtreecommitdiff
path: root/Source/Core/VideoBackends/Software/SWmain.cpp
diff options
context:
space:
mode:
authorScott Mansell <phiren@gmail.com>2014-02-02 01:00:19 +1300
committerTony Wasserka <NeoBrainX@gmail.com>2014-03-01 18:45:24 +0100
commit17231418ef79e9e2d5fcc21bbf704848fa2f22ab (patch)
treee145324b0dea5a3809cec0b03bf1f21d25f6cdfd /Source/Core/VideoBackends/Software/SWmain.cpp
parent0942bdae1c6e9d841545a9f4934a094044d9c6bb (diff)
videosoftware: Added hack to bypass xfb just so fifoplayer works.
Fifoplayer depends on the old behaviour of videosoftware (and the other hardware backends in non virtual/real xfb modes) where the framebuffer gets rendered directly to the screen. Really fifoplayer should call BeginFrame/EndFrame when it finished rendering a frame, but adding this hack back in is simpler.
Diffstat (limited to 'Source/Core/VideoBackends/Software/SWmain.cpp')
-rw-r--r--Source/Core/VideoBackends/Software/SWmain.cpp12
1 files changed, 7 insertions, 5 deletions
diff --git a/Source/Core/VideoBackends/Software/SWmain.cpp b/Source/Core/VideoBackends/Software/SWmain.cpp
index b4a4cb2a2a..e91fb1bae5 100644
--- a/Source/Core/VideoBackends/Software/SWmain.cpp
+++ b/Source/Core/VideoBackends/Software/SWmain.cpp
@@ -231,11 +231,13 @@ void VideoSoftware::Video_EndField()
// messy when the Hardware Rasterizer is enabled.
// And Neobrain loves his Hardware Rasterizer
- // If we are runing dual core, Signal the GPU thread about the new colour texture.
- if (SConfig::GetInstance().m_LocalCoreStartupParameter.bCPUThread)
- Common::AtomicStoreRelease(s_swapRequested, true);
- else
- SWRenderer::Swap(s_beginFieldArgs.fbWidth, s_beginFieldArgs.fbHeight);
+ if (!g_SWVideoConfig.bBypassXFB) { // BypassXFB has already done a swap, so skip this.
+ // If we are runing dual core, Signal the GPU thread about the new colour texture.
+ if (SConfig::GetInstance().m_LocalCoreStartupParameter.bCPUThread)
+ Common::AtomicStoreRelease(s_swapRequested, true);
+ else
+ SWRenderer::Swap(s_beginFieldArgs.fbWidth, s_beginFieldArgs.fbHeight);
+ }
}
u32 VideoSoftware::Video_AccessEFB(EFBAccessType type, u32 x, u32 y, u32 InputData)