diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-08-09 00:27:13 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-08-09 00:27:13 +0300 |
commit | b4ec726fe28f65b15fd4cc7b0ef6fd72b7d24c02 (patch) | |
tree | 2f036904b433f9a1753b2bcbb6fbc99a5d0b643e /src/render/nullopenglgraphics.h | |
parent | 17a08b25c0df685e3f5c7edf1d4ab583f55ecaf9 (diff) | |
download | ManaVerse-b4ec726fe28f65b15fd4cc7b0ef6fd72b7d24c02.tar.gz ManaVerse-b4ec726fe28f65b15fd4cc7b0ef6fd72b7d24c02.tar.bz2 ManaVerse-b4ec726fe28f65b15fd4cc7b0ef6fd72b7d24c02.tar.xz ManaVerse-b4ec726fe28f65b15fd4cc7b0ef6fd72b7d24c02.zip |
Add some missing checks to render found by paranucker.
Diffstat (limited to 'src/render/nullopenglgraphics.h')
-rw-r--r-- | src/render/nullopenglgraphics.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/render/nullopenglgraphics.h b/src/render/nullopenglgraphics.h index f159fc7de..10853adec 100644 --- a/src/render/nullopenglgraphics.h +++ b/src/render/nullopenglgraphics.h @@ -78,9 +78,9 @@ class NullOpenGLGraphics final : public Graphics #include "render/openglgraphicsdefadvanced.hpp" private: - GLfloat *mFloatTexArray; - GLint *mIntTexArray; - GLint *mIntVertArray; + GLfloat *mFloatTexArray A_NONNULLPOINTER; + GLint *mIntTexArray A_NONNULLPOINTER; + GLint *mIntVertArray A_NONNULLPOINTER; bool mTexture; bool mIsByteColor; |