summaryrefslogtreecommitdiffstats
path: root/src/opengl
diff options
context:
space:
mode:
authorDavid Boddie <david.boddie@nokia.com>2011-03-25 12:55:46 (GMT)
committerDavid Boddie <david.boddie@nokia.com>2011-03-25 12:55:46 (GMT)
commitdd1234457f3cecc7f9bab569ba492aa24e4a242c (patch)
tree884dc7e228be2978492875666806d30d9fd8e22d /src/opengl
parent1e4f865df3bdfb15a0d4839274aa58ae23e9c325 (diff)
downloadQt-dd1234457f3cecc7f9bab569ba492aa24e4a242c.zip
Qt-dd1234457f3cecc7f9bab569ba492aa24e4a242c.tar.gz
Qt-dd1234457f3cecc7f9bab569ba492aa24e4a242c.tar.bz2
Doc: Removed duplicate documentation.
Diffstat (limited to 'src/opengl')
-rw-r--r--src/opengl/qpixmapdata_poolgl.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/opengl/qpixmapdata_poolgl.cpp b/src/opengl/qpixmapdata_poolgl.cpp
index 64de29e..8ae90e9 100644
--- a/src/opengl/qpixmapdata_poolgl.cpp
+++ b/src/opengl/qpixmapdata_poolgl.cpp
@@ -63,19 +63,6 @@ QT_BEGIN_NAMESPACE
Q_OPENGL_EXPORT extern QGLWidget* qt_gl_share_widget();
-/*!
- \class QGLFramebufferObjectPool
- \since 4.6
-
- \brief The QGLFramebufferObject class provides a pool of framebuffer
- objects for offscreen rendering purposes.
-
- When requesting an FBO of a given size and format, an FBO of the same
- format and a size at least as big as the requested size will be returned.
-
- \internal
-*/
-
static inline int areaDiff(const QSize &size, const QGLFramebufferObject *fbo)
{
return qAbs(size.width() * size.height() - fbo->width() * fbo->height());