summaryrefslogtreecommitdiff
path: root/Source/Core/VideoBackends/Software/EfbCopy.cpp
diff options
context:
space:
mode:
authordegasus <wickmarkus@web.de>2016-05-18 09:13:13 +0200
committerdegasus <wickmarkus@web.de>2016-05-18 18:37:44 +0200
commitfa3526962df647adb7e02fc5fe6af231951344e1 (patch)
treea84c08b0912e094bcb08fd1189cc35fa863fabd6 /Source/Core/VideoBackends/Software/EfbCopy.cpp
parente11b884778b140f70c121495e4b03f173d9a2ada (diff)
VideoSW: Drop Update in XFB copy.
Diffstat (limited to 'Source/Core/VideoBackends/Software/EfbCopy.cpp')
-rw-r--r--Source/Core/VideoBackends/Software/EfbCopy.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/Source/Core/VideoBackends/Software/EfbCopy.cpp b/Source/Core/VideoBackends/Software/EfbCopy.cpp
index 34032437c8..b076cb3d35 100644
--- a/Source/Core/VideoBackends/Software/EfbCopy.cpp
+++ b/Source/Core/VideoBackends/Software/EfbCopy.cpp
@@ -3,7 +3,6 @@
// Refer to the license.txt file included.
#include "Common/CommonTypes.h"
-#include "Common/GL/GLInterfaceBase.h"
#include "Common/Logging/Log.h"
#include "Core/HW/Memmap.h"
#include "VideoBackends/Software/EfbCopy.h"
@@ -25,8 +24,6 @@ namespace EfbCopy
{
static void CopyToXfb(u32 xfbAddr, u32 fbWidth, u32 fbHeight, const EFBRectangle& sourceRc, float Gamma)
{
- GLInterface->Update(); // update the render window position and the backbuffer size
-
INFO_LOG(VIDEO, "xfbaddr: %x, fbwidth: %i, fbheight: %i, source: (%i, %i, %i, %i), Gamma %f",
xfbAddr, fbWidth, fbHeight, sourceRc.top, sourceRc.left, sourceRc.bottom, sourceRc.right, Gamma);