Add debug option to skip cursor-only updates while VRR is active (#1616)

* Add debug option to skip cursor-only updates while VRR is active

* Update niri-config/src/lib.rs

Co-authored-by: Ivan Molodetskikh <yalterz@gmail.com>

* Update src/backend/tty.rs

Co-authored-by: Ivan Molodetskikh <yalterz@gmail.com>

* Update wiki/Configuration:-Debug-Options.md

Co-authored-by: Ivan Molodetskikh <yalterz@gmail.com>

* Update Configuration:-Debug-Options.md

* Update tty.rs

* Update lib.rs

* Update Configuration:-Debug-Options.md

---------

Co-authored-by: Ivan Molodetskikh <yalterz@gmail.com>
This commit is contained in:
Gwen
2025-06-04 01:56:21 +10:00
committed by GitHub
parent 1911cf3f55
commit a7186a0441
3 changed files with 26 additions and 0 deletions
+6
View File
@@ -1422,6 +1422,12 @@ impl Tty {
if debug.disable_cursor_plane {
flags.remove(FrameFlags::ALLOW_CURSOR_PLANE_SCANOUT);
}
if debug.skip_cursor_only_updates_during_vrr {
let output_state = niri.output_state.get(output).unwrap();
if output_state.frame_clock.vrr() {
flags.insert(FrameFlags::SKIP_CURSOR_ONLY_UPDATES);
}
}
flags
};