https://bugs.kde.org/show_bug.cgi?id=497571
--- Comment #1 from Oxalica <oxal...@pm.me> --- After some debugging, I made it work with the following patch on top of kwin v6.2.4. With it, both spectacle and obs-studio record the non-scaled correct resolution and the content looks clear. I hope it helps, but I'm not sure if it's ideal and it's not applicable on kwin master due to some non-trivial code change. ``` diff --git a/src/plugins/screencast/windowscreencastsource.cpp b/src/plugins/screencast/windowscreencastsource.cpp index f2a1432e4d..2b2c6ed36d 100644 --- a/src/plugins/screencast/windowscreencastsource.cpp +++ b/src/plugins/screencast/windowscreencastsource.cpp @@ -49,12 +49,12 @@ quint32 WindowScreenCastSource::drmFormat() const QSize WindowScreenCastSource::textureSize() const { - return m_window->clientGeometry().size().toSize(); + return m_window->clientGeometry().size().toSize() * devicePixelRatio(); } qreal WindowScreenCastSource::devicePixelRatio() const { - return 1.0; + return m_window->preferredBufferScale(); } void WindowScreenCastSource::render(QImage *target) -- ``` -- You are receiving this mail because: You are watching all bug changes.