summaryrefslogtreecommitdiffstats
path: root/src/opengl/qpixmapdata_gl.cpp
diff options
context:
space:
mode:
authorSamuel Rødal <sroedal@trolltech.com>2009-08-25 10:31:26 +0200
committerSamuel Rødal <sroedal@trolltech.com>2009-08-25 16:36:47 +0200
commit03bfdba7d45ddbf086376a20568a49525dddf845 (patch)
treecc70a7641577e05691b6061aa6cbb26712eeefae /src/opengl/qpixmapdata_gl.cpp
parentf393f7f45b22990ed22308a912b7a00cc7ddd78e (diff)
Removed warnings / debug output in the GL 2 engine / pixmap filter code.
Reviewed-by: Tom
Diffstat (limited to 'src/opengl/qpixmapdata_gl.cpp')
-rw-r--r--src/opengl/qpixmapdata_gl.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/opengl/qpixmapdata_gl.cpp b/src/opengl/qpixmapdata_gl.cpp
index a441a237a..80e99a068 100644
--- a/src/opengl/qpixmapdata_gl.cpp
+++ b/src/opengl/qpixmapdata_gl.cpp
@@ -108,7 +108,6 @@ QGLFramebufferObject *QGLFramebufferObjectPool::acquire(const QSize &requestSize
if (sz != fboSize) {
delete candidate;
- qDebug() << "Resizing fbo in pool:" << sz;
candidate = new QGLFramebufferObject(sz, requestFormat);
}
@@ -117,7 +116,6 @@ QGLFramebufferObject *QGLFramebufferObjectPool::acquire(const QSize &requestSize
}
if (!chosen) {
- qDebug() << "Creating new fbo in pool:" << requestSize;
chosen = new QGLFramebufferObject(requestSize, requestFormat);
}