diff options
author | Rhys Weatherley <rhys.weatherley@nokia.com> | 2009-04-03 03:12:52 (GMT) |
---|---|---|
committer | Rhys Weatherley <rhys.weatherley@nokia.com> | 2009-04-03 03:12:52 (GMT) |
commit | 0bb93751c80109a13f6391c8bbfb74693b484699 (patch) | |
tree | bddc2aeb0db1bd48cb05f045a75c424da756c54f | |
parent | 36f79cff893e446cafa579dd2a7dc841e0a0d4e7 (diff) | |
parent | 2772d0455446000eb9aab882b884805d8a2a5d93 (diff) | |
download | Qt-0bb93751c80109a13f6391c8bbfb74693b484699.zip Qt-0bb93751c80109a13f6391c8bbfb74693b484699.tar.gz Qt-0bb93751c80109a13f6391c8bbfb74693b484699.tar.bz2 |
Merge branch '4.5'
-rw-r--r-- | src/plugins/gfxdrivers/powervr/README | 3 | ||||
-rw-r--r-- | src/plugins/gfxdrivers/powervr/pvreglscreen/pvreglscreen.cpp | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/src/plugins/gfxdrivers/powervr/README b/src/plugins/gfxdrivers/powervr/README index b830066..ec02efb 100644 --- a/src/plugins/gfxdrivers/powervr/README +++ b/src/plugins/gfxdrivers/powervr/README @@ -8,6 +8,9 @@ is built as two libraries: The actual QScreen plugin used by Qt (in the pvreglscreen directory) and a WSEGL plugin for the PowerVR drivers (in the QWSWSEGL directory). +Qt/Embedded needs to be configured with the QT_QWS_CLIENTBLIT and +QT_NO_QWS_CURSOR defines. + The PowerVR drivers provide the WSEGL plugin API to allow window systems such as QWS to integrate correctly. In order to use the integration, the WSEGL plugin (libpvrQWSWSEGL.so, usually installed into the Qt library directory) must be in diff --git a/src/plugins/gfxdrivers/powervr/pvreglscreen/pvreglscreen.cpp b/src/plugins/gfxdrivers/powervr/pvreglscreen/pvreglscreen.cpp index 3a94851..b0ffbf1 100644 --- a/src/plugins/gfxdrivers/powervr/pvreglscreen/pvreglscreen.cpp +++ b/src/plugins/gfxdrivers/powervr/pvreglscreen/pvreglscreen.cpp @@ -381,7 +381,7 @@ void PvrEglSurfaceHolder::removeSurface() // create the temporary surface again. if (surface == EGL_NO_SURFACE && dpy != EGL_NO_DISPLAY) { surface = eglCreateWindowSurface - (dpy, config, (EGLNativeWindowType)tempSurface, NULL); + (dpy, config, (EGLNativeWindowType)(-1), NULL); if (surface == EGL_NO_SURFACE) qWarning("Could not re-create the temporary EGL surface"); } |