diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-12-26 21:08:45 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-12-26 21:08:45 +0300 |
commit | a8acf366d3e943fb636e24b69c8c67152770d2cc (patch) | |
tree | 99d51b8b56489fd03f32cd291e8570834954ac90 /src/render/nullopenglgraphics.cpp | |
parent | e2b84bddbb089f43a9c2c3741545378614481a32 (diff) | |
download | plus-a8acf366d3e943fb636e24b69c8c67152770d2cc.tar.gz plus-a8acf366d3e943fb636e24b69c8c67152770d2cc.tar.bz2 plus-a8acf366d3e943fb636e24b69c8c67152770d2cc.tar.xz plus-a8acf366d3e943fb636e24b69c8c67152770d2cc.zip |
Fix code style.
Diffstat (limited to 'src/render/nullopenglgraphics.cpp')
-rw-r--r-- | src/render/nullopenglgraphics.cpp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/render/nullopenglgraphics.cpp b/src/render/nullopenglgraphics.cpp index bce9360a4..45acf78d9 100644 --- a/src/render/nullopenglgraphics.cpp +++ b/src/render/nullopenglgraphics.cpp @@ -923,7 +923,8 @@ void NullOpenGLGraphics::drawTileVertexes(const ImageVertexes * void NullOpenGLGraphics::calcWindow(ImageCollection *restrict const vertCol, const int x, const int y, const int w, const int h, - const ImageRect &restrict imgRect) restrict2 + const ImageRect &restrict imgRect) + restrict2 { if (!vertCol) return; @@ -1137,7 +1138,8 @@ inline void NullOpenGLGraphics::drawQuadArrayfi(const GLint *restrict const #endif } -inline void NullOpenGLGraphics::drawQuadArrayii(const int size A_UNUSED) restrict2 +inline void NullOpenGLGraphics::drawQuadArrayii(const int size A_UNUSED) + restrict2 { #ifdef DEBUG_DRAW_CALLS mDrawCalls ++; @@ -1148,7 +1150,8 @@ inline void NullOpenGLGraphics::drawQuadArrayii(const GLint *restrict const intVertArray A_UNUSED, const GLint *restrict const intTexArray A_UNUSED, - const int size A_UNUSED) restrict2 + const int size A_UNUSED) + restrict2 { #ifdef DEBUG_DRAW_CALLS mDrawCalls ++; |