You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With just a few blurred windows in the background, the regions that have to be painted quickly add up, even if all the windows are covered by an opaque window.
I commented out the data.setTranslucent() line and the GPU usage has dropped in the situation described at the beginning. I haven't noticed any issues with corners, shadows or the outline on Wayland and X11.
Although I should mention that Plasma 6 broke transparent color schemes and the translucent area behind some windows is no longer painted (bug report, video), resulting in artifacts on Wayland. data.setTranslucent() does fix this, so removing it could bring back the issue for some users.
I'm running Plasma 6.0.3 with KDE-Rounded-Corners 0.6.1.
The text was updated successfully, but these errors were encountered:
With just a few blurred windows in the background, the regions that have to be painted quickly add up, even if all the windows are covered by an opaque window.
I believe this is an accident, as
data.setTranslucent()
setsdata.opaque
to an empty region, but just a few lines later you are subtracting from that empty region.https://github.com/matinlotfali/KDE-Rounded-Corners/blob/master/src/ShapeCornersEffect.cpp#L137-L149
https://github.com/KDE/kwin/blob/v6.0.3/src/effect/effect.cpp#L20-L25
I commented out the
data.setTranslucent()
line and the GPU usage has dropped in the situation described at the beginning. I haven't noticed any issues with corners, shadows or the outline on Wayland and X11.Although I should mention that Plasma 6 broke transparent color schemes and the translucent area behind some windows is no longer painted (bug report, video), resulting in artifacts on Wayland.
data.setTranslucent()
does fix this, so removing it could bring back the issue for some users.I'm running Plasma 6.0.3 with KDE-Rounded-Corners 0.6.1.
The text was updated successfully, but these errors were encountered: