summaryrefslogtreecommitdiff
path: root/src/openglgraphics.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2012-06-27 22:44:43 +0300
committerAndrei Karas <akaras@inbox.ru>2012-06-28 00:30:58 +0300
commit81b52381745a96fcbae36aa744585ac1a1ff5d18 (patch)
tree3fe282fc5b6655cd795dfb0b27a195cd1811fabb /src/openglgraphics.cpp
parent7530325ae71cab358d134ff0c442b206bbe61060 (diff)
downloadplus-81b52381745a96fcbae36aa744585ac1a1ff5d18.tar.gz
plus-81b52381745a96fcbae36aa744585ac1a1ff5d18.tar.bz2
plus-81b52381745a96fcbae36aa744585ac1a1ff5d18.tar.xz
plus-81b52381745a96fcbae36aa744585ac1a1ff5d18.zip
Add debug for binding textures.
Diffstat (limited to 'src/openglgraphics.cpp')
-rw-r--r--src/openglgraphics.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/openglgraphics.cpp b/src/openglgraphics.cpp
index 7d32fd476..ab65fd7ee 100644
--- a/src/openglgraphics.cpp
+++ b/src/openglgraphics.cpp
@@ -214,6 +214,9 @@ bool OpenGLGraphics::drawImage(const Image *image, int srcX, int srcY,
if (!useColor)
glColor4f(1.0f, 1.0f, 1.0f, image->mAlpha);
+#ifdef DEBUG_BIND_TEXTURE
+ logger->log("bind: " + image->getIdPath());
+#endif
bindTexture(OpenGLImageHelper::mTextureType, image->mGLImage);
setTexturingAndBlending(true);
@@ -271,6 +274,9 @@ bool OpenGLGraphics::drawRescaledImage(Image *image, int srcX, int srcY,
if (!useColor)
glColor4f(1.0f, 1.0f, 1.0f, image->mAlpha);
+#ifdef DEBUG_BIND_TEXTURE
+ logger->log("bind: " + image->getIdPath());
+#endif
bindTexture(OpenGLImageHelper::mTextureType, image->mGLImage);
setTexturingAndBlending(true);
@@ -324,6 +330,9 @@ void OpenGLGraphics::drawImagePattern(const Image *image, int x, int y,
glColor4f(1.0f, 1.0f, 1.0f, image->mAlpha);
+#ifdef DEBUG_BIND_TEXTURE
+ logger->log("bind: " + image->getIdPath());
+#endif
bindTexture(OpenGLImageHelper::mTextureType, image->mGLImage);
setTexturingAndBlending(true);
@@ -458,6 +467,9 @@ void OpenGLGraphics::drawRescaledImagePattern(Image *image,
glColor4f(1.0f, 1.0f, 1.0f, image->mAlpha);
+#ifdef DEBUG_BIND_TEXTURE
+ logger->log("bind: " + image->getIdPath());
+#endif
bindTexture(OpenGLImageHelper::mTextureType, image->mGLImage);
setTexturingAndBlending(true);
@@ -598,6 +610,9 @@ void OpenGLGraphics::drawImagePattern2(GraphicsVertexes *vert,
OpenGLGraphicsVertexes *ogl = vert->getOGL();
glColor4f(1.0f, 1.0f, 1.0f, image->mAlpha);
+#ifdef DEBUG_BIND_TEXTURE
+ logger->log("bind: " + image->getIdPath());
+#endif
bindTexture(OpenGLImageHelper::mTextureType, image->mGLImage);
setTexturingAndBlending(true);
@@ -912,6 +927,9 @@ void OpenGLGraphics::drawTile(ImageVertexes *vert)
OpenGLGraphicsVertexes *ogl = vert->ogl;
glColor4f(1.0f, 1.0f, 1.0f, image->mAlpha);
+#ifdef DEBUG_BIND_TEXTURE
+ logger->log("bind: " + image->getIdPath());
+#endif
bindTexture(OpenGLImageHelper::mTextureType, image->mGLImage);
setTexturingAndBlending(true);