diff options
Diffstat (limited to 'src/render')
-rw-r--r-- | src/render/normalopenglgraphics.h | 9 | ||||
-rw-r--r-- | src/render/safeopenglgraphics.h | 9 | ||||
-rw-r--r-- | src/render/sdl2graphics.h | 3 |
3 files changed, 14 insertions, 7 deletions
diff --git a/src/render/normalopenglgraphics.h b/src/render/normalopenglgraphics.h index f679a915e..f59e02880 100644 --- a/src/render/normalopenglgraphics.h +++ b/src/render/normalopenglgraphics.h @@ -56,9 +56,12 @@ class NormalOpenGLGraphics final : public Graphics ~NormalOpenGLGraphics(); - bool setVideoMode(const int w, const int h, const int bpp, - const bool fs, const bool hwaccel, - const bool resize, const bool noFrame) override final; + bool setVideoMode(const int w, const int h, + const int bpp, + const bool fs, + const bool hwaccel, + const bool resize, + const bool noFrame) override final; /** diff --git a/src/render/safeopenglgraphics.h b/src/render/safeopenglgraphics.h index 4e9366bf5..773657261 100644 --- a/src/render/safeopenglgraphics.h +++ b/src/render/safeopenglgraphics.h @@ -50,9 +50,12 @@ class SafeOpenGLGraphics final : public Graphics ~SafeOpenGLGraphics(); - bool setVideoMode(const int w, const int h, const int bpp, - const bool fs, const bool hwaccel, - const bool resize, const bool noFrame) override final; + bool setVideoMode(const int w, const int h, + const int bpp, + const bool fs, + const bool hwaccel, + const bool resize, + const bool noFrame) override final; /** * Draws a resclaled version of the image diff --git a/src/render/sdl2graphics.h b/src/render/sdl2graphics.h index c35e1067e..0e1801b0e 100644 --- a/src/render/sdl2graphics.h +++ b/src/render/sdl2graphics.h @@ -67,7 +67,8 @@ class SDLGraphics : public Graphics const int width, const int height, const int desiredWidth, const int desiredHeight, - const bool useColor = false) override final; + const bool useColor = false) + override final; virtual void drawImagePattern(const Image *const image, const int x, const int y, |