diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-04-25 16:55:35 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-04-25 16:55:35 +0300 |
commit | 4821f538a888370eb80ec28f9bab269a4427a63c (patch) | |
tree | 8e78fcb52df8b10cdd4cd2ed3859ad29c4c4c711 /src/render/normalopenglgraphics.cpp | |
parent | 51b81830c032fe255254a269b85679a89aa3728d (diff) | |
download | plus-4821f538a888370eb80ec28f9bab269a4427a63c.tar.gz plus-4821f538a888370eb80ec28f9bab269a4427a63c.tar.bz2 plus-4821f538a888370eb80ec28f9bab269a4427a63c.tar.xz plus-4821f538a888370eb80ec28f9bab269a4427a63c.zip |
Report into log OpenGL errors if enabled configure option --enable-openglerrors.
Diffstat (limited to 'src/render/normalopenglgraphics.cpp')
-rw-r--r-- | src/render/normalopenglgraphics.cpp | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/src/render/normalopenglgraphics.cpp b/src/render/normalopenglgraphics.cpp index 27432f044..c6b3f33ec 100644 --- a/src/render/normalopenglgraphics.cpp +++ b/src/render/normalopenglgraphics.cpp @@ -253,6 +253,9 @@ static inline void drawQuad(const Image *restrict const image, #endif // DEBUG_DRAW_CALLS glDrawArrays(GL_QUADS, 0, 4); +#ifdef OPENGLERRORS + graphicsManager.logError(); +#endif // OPENGLERRORS } else { @@ -277,6 +280,9 @@ static inline void drawQuad(const Image *restrict const image, #endif // DEBUG_DRAW_CALLS glDrawArrays(GL_QUADS, 0, 4); +#ifdef OPENGLERRORS + graphicsManager.logError(); +#endif // OPENGLERRORS } } @@ -327,6 +333,9 @@ static inline void drawRescaledQuad(const Image *restrict const image, #endif // DEBUG_DRAW_CALLS glDrawArrays(GL_QUADS, 0, 4); +#ifdef OPENGLERRORS + graphicsManager.logError(); +#endif // OPENGLERRORS } else { @@ -351,6 +360,9 @@ static inline void drawRescaledQuad(const Image *restrict const image, #endif // DEBUG_DRAW_CALLS glDrawArrays(GL_QUADS, 0, 4); +#ifdef OPENGLERRORS + graphicsManager.logError(); +#endif // OPENGLERRORS } } @@ -412,6 +424,9 @@ void NormalOpenGLGraphics::testDraw() restrict2 #endif // DEBUG_DRAW_CALLS glDrawArrays(GL_QUADS, 0, 4); +#ifdef OPENGLERRORS + graphicsManager.logError(); +#endif // OPENGLERRORS } else { @@ -437,6 +452,9 @@ void NormalOpenGLGraphics::testDraw() restrict2 #endif // DEBUG_DRAW_CALLS glDrawArrays(GL_QUADS, 0, 4); +#ifdef OPENGLERRORS + graphicsManager.logError(); +#endif // OPENGLERRORS } } @@ -1470,6 +1488,9 @@ void NormalOpenGLGraphics::drawRectangle(const Rect &restrict rect, #endif // DEBUG_DRAW_CALLS glDrawArrays(filled ? GL_QUADS : GL_LINE_LOOP, 0, 4); +#ifdef OPENGLERRORS + graphicsManager.logError(); +#endif // OPENGLERRORS BLOCK_END("Graphics::drawRectangle") } @@ -1545,6 +1566,9 @@ inline void NormalOpenGLGraphics::drawQuadArrayfi(const int size) restrict2 #endif // DEBUG_DRAW_CALLS glDrawArrays(GL_QUADS, 0, size / 2); +#ifdef OPENGLERRORS + graphicsManager.logError(); +#endif // OPENGLERRORS } inline void NormalOpenGLGraphics::drawQuadArrayfiCached(const int size) @@ -1556,6 +1580,9 @@ inline void NormalOpenGLGraphics::drawQuadArrayfiCached(const int size) #endif // DEBUG_DRAW_CALLS glDrawArrays(GL_QUADS, 0, size / 2); +#ifdef OPENGLERRORS + graphicsManager.logError(); +#endif // OPENGLERRORS } inline void NormalOpenGLGraphics::drawQuadArrayfi(const GLint *restrict const @@ -1572,6 +1599,9 @@ inline void NormalOpenGLGraphics::drawQuadArrayfi(const GLint *restrict const #endif // DEBUG_DRAW_CALLS glDrawArrays(GL_QUADS, 0, size / 2); +#ifdef OPENGLERRORS + graphicsManager.logError(); +#endif // OPENGLERRORS } inline void NormalOpenGLGraphics::drawQuadArrayii(const int size) restrict2 @@ -1582,6 +1612,9 @@ inline void NormalOpenGLGraphics::drawQuadArrayii(const int size) restrict2 #endif // DEBUG_DRAW_CALLS glDrawArrays(GL_QUADS, 0, size / 2); +#ifdef OPENGLERRORS + graphicsManager.logError(); +#endif // OPENGLERRORS } inline void NormalOpenGLGraphics::drawQuadArrayiiCached(const int size) @@ -1593,6 +1626,9 @@ inline void NormalOpenGLGraphics::drawQuadArrayiiCached(const int size) #endif // DEBUG_DRAW_CALLS glDrawArrays(GL_QUADS, 0, size / 2); +#ifdef OPENGLERRORS + graphicsManager.logError(); +#endif // OPENGLERRORS } inline void NormalOpenGLGraphics::drawQuadArrayii(const GLint *restrict const @@ -1609,6 +1645,9 @@ inline void NormalOpenGLGraphics::drawQuadArrayii(const GLint *restrict const #endif // DEBUG_DRAW_CALLS glDrawArrays(GL_QUADS, 0, size / 2); +#ifdef OPENGLERRORS + graphicsManager.logError(); +#endif // OPENGLERRORS } inline void NormalOpenGLGraphics::drawLineArrayi(const int size) restrict2 @@ -1620,6 +1659,9 @@ inline void NormalOpenGLGraphics::drawLineArrayi(const int size) restrict2 #endif // DEBUG_DRAW_CALLS glDrawArrays(GL_LINES, 0, size / 2); +#ifdef OPENGLERRORS + graphicsManager.logError(); +#endif // OPENGLERRORS } inline void NormalOpenGLGraphics::drawLineArrayf(const int size) restrict2 @@ -1631,6 +1673,9 @@ inline void NormalOpenGLGraphics::drawLineArrayf(const int size) restrict2 #endif // DEBUG_DRAW_CALLS glDrawArrays(GL_LINES, 0, size / 2); +#ifdef OPENGLERRORS + graphicsManager.logError(); +#endif // OPENGLERRORS } void NormalOpenGLGraphics::dumpSettings() |