summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGunnar Sletta <gunnar.sletta@nokia.com>2011-05-19 08:34:52 +0200
committerGunnar Sletta <gunnar.sletta@nokia.com>2011-05-19 08:34:52 +0200
commit105513a888436ad98e0d85155ea3c09f59a83411 (patch)
tree30c988d5fe0d16861976ed966b205e5dba38b645 /src
parentc5303517c3bc90ca39c30c064fc6e8df18eb3660 (diff)
Always call XInitThreads.
Any Qt application that embeds a QSGView needs to call this because of the threaded renderer. Today applications that use threaded GL silently fail. In a few weeks time, the refactor branch will be merged, which will obsolete this change, so it is a temporary measure to get tests and examples running.
Diffstat (limited to 'src')
-rw-r--r--src/gui/kernel/qapplication_x11.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/kernel/qapplication_x11.cpp b/src/gui/kernel/qapplication_x11.cpp
index 20542ea328..d1f9eb1b8a 100644
--- a/src/gui/kernel/qapplication_x11.cpp
+++ b/src/gui/kernel/qapplication_x11.cpp
@@ -1740,8 +1740,8 @@ void qt_init(QApplicationPrivate *priv, int,
} else {
// Qt controls everything (default)
- if (QApplication::testAttribute(Qt::AA_X11InitThreads))
- XInitThreads();
+ // With the threaded QML renderer, we always need this.
+ XInitThreads();
// Set application name and class
char *app_class = 0;