summaryrefslogtreecommitdiff
path: root/src/render
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-02-28 15:46:02 +0300
committerAndrei Karas <akaras@inbox.ru>2014-02-28 16:41:19 +0300
commitf146cd42ce84a08879eb286ecd2ed2aa8ad82300 (patch)
treef689f832f54f361be8cff61deb47c0e32febd486 /src/render
parent409cee51fe11e2495a2741226432666a8702dceb (diff)
downloadplus-f146cd42ce84a08879eb286ecd2ed2aa8ad82300.tar.gz
plus-f146cd42ce84a08879eb286ecd2ed2aa8ad82300.tar.bz2
plus-f146cd42ce84a08879eb286ecd2ed2aa8ad82300.tar.xz
plus-f146cd42ce84a08879eb286ecd2ed2aa8ad82300.zip
fix code style.
Diffstat (limited to 'src/render')
-rw-r--r--src/render/mobileopenglgraphics.cpp2
-rw-r--r--src/render/normalopenglgraphics.cpp2
-rw-r--r--src/render/nullopenglgraphics.cpp2
-rw-r--r--src/render/safeopenglgraphics.cpp2
-rw-r--r--src/render/sdl2graphics.cpp2
-rw-r--r--src/render/sdl2softwaregraphics.cpp2
-rw-r--r--src/render/sdlgraphics.cpp2
-rw-r--r--src/render/surfacegraphics.cpp2
8 files changed, 8 insertions, 8 deletions
diff --git a/src/render/mobileopenglgraphics.cpp b/src/render/mobileopenglgraphics.cpp
index 6925f47d0..86707fac8 100644
--- a/src/render/mobileopenglgraphics.cpp
+++ b/src/render/mobileopenglgraphics.cpp
@@ -220,7 +220,7 @@ static inline void drawRescaledQuad(const Image *const image,
}
bool MobileOpenGLGraphics::drawImage(const Image *const image,
- int dstX, int dstY)
+ int dstX, int dstY)
{
return drawImageInline(image, dstX, dstY);
}
diff --git a/src/render/normalopenglgraphics.cpp b/src/render/normalopenglgraphics.cpp
index 916002f26..6bc25be32 100644
--- a/src/render/normalopenglgraphics.cpp
+++ b/src/render/normalopenglgraphics.cpp
@@ -287,7 +287,7 @@ static inline void drawRescaledQuad(const Image *const image,
}
bool NormalOpenGLGraphics::drawImage(const Image *const image,
- int dstX, int dstY)
+ int dstX, int dstY)
{
return drawImageInline(image, dstX, dstY);
}
diff --git a/src/render/nullopenglgraphics.cpp b/src/render/nullopenglgraphics.cpp
index 159ccea94..d09d7b13b 100644
--- a/src/render/nullopenglgraphics.cpp
+++ b/src/render/nullopenglgraphics.cpp
@@ -140,7 +140,7 @@ static inline void drawRescaledQuad(const Image *const image A_UNUSED,
}
bool NullOpenGLGraphics::drawImage(const Image *const image,
- int dstX, int dstY)
+ int dstX, int dstY)
{
return drawImageInline(image, dstX, dstY);
}
diff --git a/src/render/safeopenglgraphics.cpp b/src/render/safeopenglgraphics.cpp
index a739a4904..faf2de76e 100644
--- a/src/render/safeopenglgraphics.cpp
+++ b/src/render/safeopenglgraphics.cpp
@@ -143,7 +143,7 @@ static inline void drawRescaledQuad(const Image *const image,
}
bool SafeOpenGLGraphics::drawImage(const Image *const image,
- int dstX, int dstY)
+ int dstX, int dstY)
{
return drawImageInline(image, dstX, dstY);
}
diff --git a/src/render/sdl2graphics.cpp b/src/render/sdl2graphics.cpp
index ebfcdb226..8c78c8cdd 100644
--- a/src/render/sdl2graphics.cpp
+++ b/src/render/sdl2graphics.cpp
@@ -158,7 +158,7 @@ bool SDLGraphics::drawRescaledImage(const Image *const image,
}
bool SDLGraphics::drawImage(const Image *const image,
- int dstX, int dstY)
+ int dstX, int dstY)
{
return drawImageInline(image, dstX, dstY);
}
diff --git a/src/render/sdl2softwaregraphics.cpp b/src/render/sdl2softwaregraphics.cpp
index 8fe83188f..0844cd52e 100644
--- a/src/render/sdl2softwaregraphics.cpp
+++ b/src/render/sdl2softwaregraphics.cpp
@@ -110,7 +110,7 @@ bool SDL2SoftwareGraphics::drawRescaledImage(const Image *const image,
}
bool SDL2SoftwareGraphics::drawImage(const Image *const image,
- int dstX, int dstY)
+ int dstX, int dstY)
{
return drawImageInline(image, dstX, dstY);
}
diff --git a/src/render/sdlgraphics.cpp b/src/render/sdlgraphics.cpp
index 5d1589424..44dcc426d 100644
--- a/src/render/sdlgraphics.cpp
+++ b/src/render/sdlgraphics.cpp
@@ -104,7 +104,7 @@ bool SDLGraphics::drawRescaledImage(const Image *const image,
}
bool SDLGraphics::drawImage(const Image *const image,
- int dstX, int dstY)
+ int dstX, int dstY)
{
return drawImageInline(image, dstX, dstY);
}
diff --git a/src/render/surfacegraphics.cpp b/src/render/surfacegraphics.cpp
index d9cb03136..e6aee752f 100644
--- a/src/render/surfacegraphics.cpp
+++ b/src/render/surfacegraphics.cpp
@@ -43,7 +43,7 @@ SurfaceGraphics::~SurfaceGraphics()
}
bool SurfaceGraphics::drawImage(const Image *const image,
- int dstX, int dstY)
+ int dstX, int dstY)
{
FUNC_BLOCK("Graphics::drawImage", 1)
// Check that preconditions for blitting are met.