summaryrefslogtreecommitdiff
path: root/src/render
diff options
context:
space:
mode:
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
4 files changed, 4 insertions, 4 deletions
diff --git a/src/render/mobileopenglgraphics.cpp b/src/render/mobileopenglgraphics.cpp
index 34e5c334c..bd8c38d5e 100644
--- a/src/render/mobileopenglgraphics.cpp
+++ b/src/render/mobileopenglgraphics.cpp
@@ -73,7 +73,7 @@ unsigned int MobileOpenGLGraphics::mDrawCalls = 0;
unsigned int MobileOpenGLGraphics::mLastDrawCalls = 0;
#endif
-MobileOpenGLGraphics::MobileOpenGLGraphics():
+MobileOpenGLGraphics::MobileOpenGLGraphics() :
mFloatTexArray(nullptr),
mShortVertArray(nullptr),
mFloatTexArrayCached(nullptr),
diff --git a/src/render/normalopenglgraphics.cpp b/src/render/normalopenglgraphics.cpp
index c7b01c4d2..54d773cc4 100644
--- a/src/render/normalopenglgraphics.cpp
+++ b/src/render/normalopenglgraphics.cpp
@@ -87,7 +87,7 @@ unsigned int NormalOpenGLGraphics::mBinds = 0;
unsigned int NormalOpenGLGraphics::mLastBinds = 0;
#endif
-NormalOpenGLGraphics::NormalOpenGLGraphics():
+NormalOpenGLGraphics::NormalOpenGLGraphics() :
mFloatTexArray(nullptr),
mIntTexArray(nullptr),
mIntVertArray(nullptr),
diff --git a/src/render/nullopenglgraphics.cpp b/src/render/nullopenglgraphics.cpp
index 4498ed9c6..08d0ddaf2 100644
--- a/src/render/nullopenglgraphics.cpp
+++ b/src/render/nullopenglgraphics.cpp
@@ -44,7 +44,7 @@ unsigned int NullOpenGLGraphics::mDrawCalls = 0;
unsigned int NullOpenGLGraphics::mLastDrawCalls = 0;
#endif
-NullOpenGLGraphics::NullOpenGLGraphics():
+NullOpenGLGraphics::NullOpenGLGraphics() :
mFloatTexArray(nullptr),
mIntTexArray(nullptr),
mIntVertArray(nullptr),
diff --git a/src/render/safeopenglgraphics.cpp b/src/render/safeopenglgraphics.cpp
index bc22b3c69..2fdc55e87 100644
--- a/src/render/safeopenglgraphics.cpp
+++ b/src/render/safeopenglgraphics.cpp
@@ -40,7 +40,7 @@
GLuint SafeOpenGLGraphics::mLastImage = 0;
-SafeOpenGLGraphics::SafeOpenGLGraphics():
+SafeOpenGLGraphics::SafeOpenGLGraphics() :
mTexture(false),
mIsByteColor(false),
mByteColor(),