summaryrefslogtreecommitdiff
path: root/src/gui/egl
diff options
context:
space:
mode:
authorRhys Weatherley <rhys.weatherley@nokia.com>2009-10-16 14:48:59 +1000
committerRhys Weatherley <rhys.weatherley@nokia.com>2009-10-16 14:48:59 +1000
commit8e4fa6e87f74cfb3457e8270a361cf30ca7d3593 (patch)
treecda832f0297ecead59f8f4130a6aad1959e5e52c /src/gui/egl
parent8ca1bd6fccb080808331f9de056d3915a60917fb (diff)
downloadqt4-tools-8e4fa6e87f74cfb3457e8270a361cf30ca7d3593.tar.gz
Recognize transformed screens when looking for a QGLScreen
If the QWS_DISPLAY is specified as "Transformed:powervr:...", then we will encounter QScreen::TransformedClass rather than QScreen::ProxyClass when searching for the QGLScreen. This change makes the code search for both. Task-number: QT-2261 Reviewed-by: Sarah Smith
Diffstat (limited to 'src/gui/egl')
-rw-r--r--src/gui/egl/qegl_qws.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/egl/qegl_qws.cpp b/src/gui/egl/qegl_qws.cpp
index 590b6660b3..df1179aac5 100644
--- a/src/gui/egl/qegl_qws.cpp
+++ b/src/gui/egl/qegl_qws.cpp
@@ -83,7 +83,8 @@ static QScreen *screenForDevice(QPaintDevice *device)
screenNumber = 0;
screen = screen->subScreens()[screenNumber];
}
- while (screen->classId() == QScreen::ProxyClass) {
+ while (screen->classId() == QScreen::ProxyClass ||
+ screen->classId() == QScreen::TransformedClass) {
screen = static_cast<QProxyScreen *>(screen)->screen();
}
return screen;