plugins/screencast: Enable alpha channel for window streams

It appears like a dozen of applications that provide window
screencasting feature don't support BGR video format, only BGRA and BGRx.
This commit is contained in:
Vlad Zahorodnii 2021-12-09 17:53:29 +02:00
parent 2817e7581f
commit f308447cc2

View file

@ -27,7 +27,7 @@ WindowScreenCastSource::WindowScreenCastSource(Toplevel *window, QObject *parent
bool WindowScreenCastSource::hasAlphaChannel() const
{
return false;
return true;
}
QSize WindowScreenCastSource::textureSize() const