diff options
author | Tom Cooksey <thomas.cooksey@nokia.com> | 2009-05-05 18:49:53 (GMT) |
---|---|---|
committer | Tom Cooksey <thomas.cooksey@nokia.com> | 2009-05-05 18:49:53 (GMT) |
commit | 8baf1a4dfb2b1a1bb7ecb5ada93ed9972f0e7762 (patch) | |
tree | 6e76f13389be821def8399b52b0e0dc5b5e96bcf /src/opengl/opengl.pro | |
parent | 95088e80a523eaa1f4cfd276f56c1ccd64f387b5 (diff) | |
download | Qt-8baf1a4dfb2b1a1bb7ecb5ada93ed9972f0e7762.zip Qt-8baf1a4dfb2b1a1bb7ecb5ada93ed9972f0e7762.tar.gz Qt-8baf1a4dfb2b1a1bb7ecb5ada93ed9972f0e7762.tar.bz2 |
Fix OpenGL ES 2.0 breakages
Enable GL graphics system on ES 2.0 builds - it wont work, but now
QGLDrawable is being used it's just easier to build the graphics system.
Diffstat (limited to 'src/opengl/opengl.pro')
-rw-r--r-- | src/opengl/opengl.pro | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/opengl/opengl.pro b/src/opengl/opengl.pro index 88af516..7cb8a71 100644 --- a/src/opengl/opengl.pro +++ b/src/opengl/opengl.pro @@ -15,10 +15,10 @@ contains(QT_CONFIG, opengl):CONFIG += opengl contains(QT_CONFIG, opengles1):CONFIG += opengles1 contains(QT_CONFIG, opengles2):CONFIG += opengles2 -!contains(QT_CONFIG, opengles2) { +#!contains(QT_CONFIG, opengles2) { HEADERS += qgraphicssystem_gl_p.h qwindowsurface_gl_p.h qpixmapdata_gl_p.h SOURCES += qgraphicssystem_gl.cpp qwindowsurface_gl.cpp qpixmapdata_gl.cpp -} +#} HEADERS += qgl.h \ qgl_p.h \ |