diff options
author | Jørgen Lind <jorgen.lind@nokia.com> | 2011-04-14 13:48:36 (GMT) |
---|---|---|
committer | Jørgen Lind <jorgen.lind@nokia.com> | 2011-04-14 13:48:36 (GMT) |
commit | c7537e30ba4698b52d90b68875af16285785bf70 (patch) | |
tree | ca0f839784bf0447a0d619b21582b4d2642e4053 /src/opengl/qgl_qpa.cpp | |
parent | b56444d86aa449e2da15d9b9fd08001f09ac9b25 (diff) | |
download | Qt-c7537e30ba4698b52d90b68875af16285785bf70.zip Qt-c7537e30ba4698b52d90b68875af16285785bf70.tar.gz Qt-c7537e30ba4698b52d90b68875af16285785bf70.tar.bz2 |
Remove hasOpenGL. This changes breaks binary compatibillity
so you will need to use $QTBUILDDIR/bin/syncqt and recompile all
applications
Diffstat (limited to 'src/opengl/qgl_qpa.cpp')
-rw-r--r-- | src/opengl/qgl_qpa.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/opengl/qgl_qpa.cpp b/src/opengl/qgl_qpa.cpp index 4bac1fb..994344c 100644 --- a/src/opengl/qgl_qpa.cpp +++ b/src/opengl/qgl_qpa.cpp @@ -127,7 +127,8 @@ void QGLContextPrivate::setupSharing() { bool QGLFormat::hasOpenGL() { - return QApplicationPrivate::platformIntegration()->hasOpenGL(); + return QApplicationPrivate::platformIntegration() + ->hasCapability(QPlatformIntegration::OpenGL); } void qDeleteQGLContext(void *handle) |