diff options
Diffstat (limited to 'src/graphicsmanager.cpp')
-rw-r--r-- | src/graphicsmanager.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/graphicsmanager.cpp b/src/graphicsmanager.cpp index 11db52974..6af2e454c 100644 --- a/src/graphicsmanager.cpp +++ b/src/graphicsmanager.cpp @@ -104,6 +104,10 @@ const std::string densityNames[] = "xxhigh" }; +#ifdef USE_OPENGL +GLenum GraphicsManager::mLastError(GL_NO_ERROR); +#endif + GraphicsManager::GraphicsManager() : mExtensions(), mPlatformExtensions(), @@ -928,6 +932,7 @@ GLenum GraphicsManager::getLastError() while (tmp != GL_NO_ERROR) { error = tmp; + mLastError = tmp; tmp = glGetError(); } return error; |