diff options
Diffstat (limited to 'src/render/nullopenglgraphics.h')
-rw-r--r-- | src/render/nullopenglgraphics.h | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/src/render/nullopenglgraphics.h b/src/render/nullopenglgraphics.h index abd73a117..cbb9f5b8b 100644 --- a/src/render/nullopenglgraphics.h +++ b/src/render/nullopenglgraphics.h @@ -55,21 +55,22 @@ class NullOpenGLGraphics final : public Graphics ~NullOpenGLGraphics(); - inline void drawQuadArrayfi(const int size); + inline void drawQuadArrayfi(const int size) restrict2; - inline void drawQuadArrayfi(const GLint *const intVertArray, - const GLfloat *const floatTexArray, - const int size); + inline void drawQuadArrayfi(const GLint *restrict const intVertArray, + const GLfloat *restrict const + floatTexArray, + const int size) restrict2; - inline void drawQuadArrayii(const int size); + inline void drawQuadArrayii(const int size) restrict2; - inline void drawQuadArrayii(const GLint *const intVertArray, - const GLint *const intTexArray, - const int size); + inline void drawQuadArrayii(const GLint *restrict const intVertArray, + const GLint *restrict const intTexArray, + const int size) restrict2; - inline void drawLineArrayi(const int size); + inline void drawLineArrayi(const int size) restrict2; - inline void drawLineArrayf(const int size); + inline void drawLineArrayf(const int size) restrict2; #include "render/graphicsdef.hpp" |