summaryrefslogtreecommitdiffstats
path: root/src/opengl/qglpixelbuffer.cpp
diff options
context:
space:
mode:
authorRhys Weatherley <rhys.weatherley@nokia.com>2010-01-29 00:48:15 (GMT)
committerRhys Weatherley <rhys.weatherley@nokia.com>2010-02-04 01:06:08 (GMT)
commitad47f9cee2cd47ef566f86ca20f54e3f6da54070 (patch)
tree2c77b9ee200da679ffabea192395ec8fc4509b43 /src/opengl/qglpixelbuffer.cpp
parent35988b6d5d14388004a4b51df1355d3d3a97d145 (diff)
downloadQt-ad47f9cee2cd47ef566f86ca20f54e3f6da54070.zip
Qt-ad47f9cee2cd47ef566f86ca20f54e3f6da54070.tar.gz
Qt-ad47f9cee2cd47ef566f86ca20f54e3f6da54070.tar.bz2
Remove obsolete OpenGL/ES CommonLite (fixed-point) support
Task-number: QTBUG-7683 Reviewed-by: Tom Cooksey
Diffstat (limited to 'src/opengl/qglpixelbuffer.cpp')
-rw-r--r--src/opengl/qglpixelbuffer.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/opengl/qglpixelbuffer.cpp b/src/opengl/qglpixelbuffer.cpp
index 46f7697..eca9550 100644
--- a/src/opengl/qglpixelbuffer.cpp
+++ b/src/opengl/qglpixelbuffer.cpp
@@ -78,7 +78,7 @@
#include <QtCore/qglobal.h>
-#if !defined(QT_OPENGL_ES_1) && !defined(QT_OPENGL_ES_1_CL)
+#if !defined(QT_OPENGL_ES_1)
#include <private/qpaintengineex_opengl2_p.h>
#endif
@@ -387,7 +387,7 @@ bool QGLPixelBuffer::isValid() const
return !d->invalid;
}
-#if !defined(QT_OPENGL_ES_1) && !defined(QT_OPENGL_ES_1_CL)
+#if !defined(QT_OPENGL_ES_1)
Q_GLOBAL_STATIC(QGL2PaintEngineEx, qt_buffer_2_engine)
#endif
@@ -398,7 +398,7 @@ Q_GLOBAL_STATIC(QOpenGLPaintEngine, qt_buffer_engine)
/*! \reimp */
QPaintEngine *QGLPixelBuffer::paintEngine() const
{
-#if defined(QT_OPENGL_ES_1) || defined(QT_OPENGL_ES_1_CL)
+#if defined(QT_OPENGL_ES_1)
return qt_buffer_engine();
#elif defined(QT_OPENGL_ES_2)
return qt_buffer_2_engine();