summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/FramebufferManagerBase.h
diff options
context:
space:
mode:
authorJules Blok <jules.blok@gmail.com>2014-12-25 00:58:16 +0100
committerJules Blok <jules.blok@gmail.com>2014-12-25 00:58:16 +0100
commit46bb4fd364ccd5e13c2cb13f1d8356526948337e (patch)
tree400eb2d2c9afeecd673d5914954e81572e716a69 /Source/Core/VideoCommon/FramebufferManagerBase.h
parent49137c7c2cd679a7e70330dac2364d448dac8c38 (diff)
FramebufferManagerBase: Remove obsolete parameters.
Diffstat (limited to 'Source/Core/VideoCommon/FramebufferManagerBase.h')
-rw-r--r--Source/Core/VideoCommon/FramebufferManagerBase.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Core/VideoCommon/FramebufferManagerBase.h b/Source/Core/VideoCommon/FramebufferManagerBase.h
index b8f1da0810..5b97f1835d 100644
--- a/Source/Core/VideoCommon/FramebufferManagerBase.h
+++ b/Source/Core/VideoCommon/FramebufferManagerBase.h
@@ -48,8 +48,8 @@ public:
static unsigned int LastXfbWidth() { return s_last_xfb_width; }
static unsigned int LastXfbHeight() { return s_last_xfb_height; }
- static int ScaleToVirtualXfbWidth(int x, unsigned int backbuffer_width);
- static int ScaleToVirtualXfbHeight(int y, unsigned int backbuffer_height);
+ static int ScaleToVirtualXfbWidth(int x);
+ static int ScaleToVirtualXfbHeight(int y);
static unsigned int GetEFBLayers() { return m_EFBLayers; }
@@ -73,7 +73,7 @@ protected:
private:
virtual XFBSourceBase* CreateXFBSource(unsigned int target_width, unsigned int target_height, unsigned int layers) = 0;
// TODO: figure out why OGL is different for this guy
- virtual void GetTargetSize(unsigned int *width, unsigned int *height, const EFBRectangle& sourceRc) = 0;
+ virtual void GetTargetSize(unsigned int *width, unsigned int *height) = 0;
static VirtualXFBListType::iterator FindVirtualXFB(u32 xfbAddr, u32 width, u32 height);