Disable threaded rendering with kms plugin

The page flip handling in QKmsScreen cannot currently cope with
contexts on multiple threads.

Change-Id: I9492095fec52fd1ad0197db00b3d6a2f58016e6d
Reviewed-by: Jørgen Lind <jorgen.lind@nokia.com>
This commit is contained in:
Laszlo Agocs 2012-07-18 13:35:14 +03:00 committed by Qt by Nokia
parent 33261c00e0
commit e8e8d0e9f2

View File

@ -94,8 +94,7 @@ bool QKmsIntegration::hasCapability(QPlatformIntegration::Capability cap) const
switch (cap) {
case ThreadedPixmaps: return true;
case OpenGL: return true;
case ThreadedOpenGL: return true;
case BufferQueueingOpenGL: return true;
case ThreadedOpenGL: return false;
default: return QPlatformIntegration::hasCapability(cap);
}
}