diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-05-10 02:11:17 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-05-10 02:11:17 +0300 |
commit | 488f656082881a7873d56cb41311662c20558d7a (patch) | |
tree | 82a07023c4e3ca58791a53466ee1283d27e2c6c6 | |
parent | e5726a11424ebd48f12d76149ec7e5e2b6278bdd (diff) | |
download | plus-488f656082881a7873d56cb41311662c20558d7a.tar.gz plus-488f656082881a7873d56cb41311662c20558d7a.tar.bz2 plus-488f656082881a7873d56cb41311662c20558d7a.tar.xz plus-488f656082881a7873d56cb41311662c20558d7a.zip |
Fix compilation with some debug options.
-rw-r--r-- | src/render/nullopenglgraphics.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/render/nullopenglgraphics.cpp b/src/render/nullopenglgraphics.cpp index 8eb88f060..866eb14a3 100644 --- a/src/render/nullopenglgraphics.cpp +++ b/src/render/nullopenglgraphics.cpp @@ -33,6 +33,10 @@ #include "debug.h" +#ifdef DEBUG_BIND_TEXTURE +#include "logger.h" +#endif + GLuint NullOpenGLGraphics::mLastImage = 0; #ifdef DEBUG_DRAW_CALLS unsigned int NullOpenGLGraphics::mDrawCalls = 0; |