Don't allow direct scanout when using software cursor
This commit is contained in:
parent
bda47c9043
commit
e30b1a0f92
1 changed files with 1 additions and 1 deletions
|
@ -789,7 +789,7 @@ QSharedPointer<GLTexture> EglGbmBackend::textureForOutput(AbstractOutput *abstra
|
|||
|
||||
bool EglGbmBackend::directScanoutAllowed(int screen) const
|
||||
{
|
||||
return !m_outputs[screen].output->directScanoutInhibited();
|
||||
return !m_backend->usesSoftwareCursor() && !m_outputs[screen].output->directScanoutInhibited();
|
||||
}
|
||||
|
||||
/************************************************
|
||||
|
|
Loading…
Reference in a new issue