diff options
author | Rhys Weatherley <rhys.weatherley@nokia.com> | 2009-09-09 23:05:46 (GMT) |
---|---|---|
committer | Rhys Weatherley <rhys.weatherley@nokia.com> | 2009-09-09 23:05:46 (GMT) |
commit | eba8265bf16468fe8d67864b939293565d3fa0c8 (patch) | |
tree | 49814a5bc98d0e6662ff12ca58838104ac7eac49 | |
parent | 77c3beb90e848a7c38459cd149f7eba977978955 (diff) | |
download | Qt-eba8265bf16468fe8d67864b939293565d3fa0c8.zip Qt-eba8265bf16468fe8d67864b939293565d3fa0c8.tar.gz Qt-eba8265bf16468fe8d67864b939293565d3fa0c8.tar.bz2 |
Compile fix for OpenGL/ES 1.1 CommonLite systems
Reviewed-by: trustme
-rw-r--r-- | src/opengl/qglpaintdevice.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/opengl/qglpaintdevice.cpp b/src/opengl/qglpaintdevice.cpp index 19db6c0..e68a4b9 100644 --- a/src/opengl/qglpaintdevice.cpp +++ b/src/opengl/qglpaintdevice.cpp @@ -49,6 +49,10 @@ #include <private/qpixmapdata_gl_p.h> #endif +#if defined(QT_OPENGL_ES_1_CL) +#include "qgl_cl_p.h" +#endif + QT_BEGIN_NAMESPACE QGLPaintDevice::QGLPaintDevice() |