aboutsummaryrefslogtreecommitdiff
path: root/guilib/GraphicContext.h
diff options
context:
space:
mode:
authorjmarshallnz <jmarshallnz@svn>2010-01-09 01:58:59 +0000
committerjmarshallnz <jmarshallnz@svn>2010-01-09 01:58:59 +0000
commit2e370e36232d786c71a86802ef64c301b977b940 (patch)
treee319c2f6c364eaa1b9584f3453abf75bbd18a0d0 /guilib/GraphicContext.h
parent119888ed65f922e0c0af29765503295f02a2a66c (diff)
cleanup: removed unnecessary arguments from SetScalingResolution and SetRenderingResolution
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@26565 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
Diffstat (limited to 'guilib/GraphicContext.h')
-rw-r--r--guilib/GraphicContext.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/guilib/GraphicContext.h b/guilib/GraphicContext.h
index 3f31028899..9dbe36489f 100644
--- a/guilib/GraphicContext.h
+++ b/guilib/GraphicContext.h
@@ -102,8 +102,8 @@ public:
void GetAllowedResolutions(std::vector<RESOLUTION> &res);
// output scaling
- void SetRenderingResolution(RESOLUTION res, float posX, float posY, bool needsScaling); ///< Sets scaling up for rendering
- void SetScalingResolution(RESOLUTION res, float posX, float posY, bool needsScaling); ///< Sets scaling up for skin loading etc.
+ void SetRenderingResolution(RESOLUTION res, bool needsScaling); ///< Sets scaling up for rendering
+ void SetScalingResolution(RESOLUTION res, bool needsScaling); ///< Sets scaling up for skin loading etc.
float GetScalingPixelRatio() const;
void Flip();
void InvertFinalCoords(float &x, float &y) const;