Replies: 3 comments 4 replies
-
there is a good reason to disable direct scanout by default. |
Beta Was this translation helpful? Give feedback.
4 replies
-
Fair enough. |
Beta Was this translation helpful? Give feedback.
0 replies
-
So this is what i did is comment out #no_direct_scanout = false do i recommend i can't say for sure but it fixed my bar tho and able to use the update. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I've been having issues with video playback getting choppy on display 1 when display 2 actively refreshes (e.g. from moving the cursor over a different window (which updates borders), scrolling the Steam store (webview) or playing). I tracked the issue to wayland's enforced vsync and the option to enable direct scanout for fullscreen applications.
I was surprised that the flag to disable it (which would suggest that the default state is ON) defaults to
true
.I would suggest to either,
if there is a good reason to disable direct scanout by default, rename the flag to be positive (e.g.
direct_scanout
orenable_direct_scanout
) and have it default tofalse
.Or preferably
change the default for
no_direct_scanout
tofalse
, as that seems to be the expected behaviour from a wayland compositor, at least in my limited understanding.Cheers
Beta Was this translation helpful? Give feedback.
All reactions