diff options
author | Simon Ser <contact@emersion.fr> | 2020-03-02 15:30:50 +0100 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2020-03-07 00:32:04 +0100 |
commit | 5d692b05811f939024fbf92c2e6eb7e66e0790dc (patch) | |
tree | adc2973635c6a189e10d444da6d42337131afcf9 /include/sway/commands.h | |
parent | 9d0aa0cb839624265c366281922a58708a9bcb9a (diff) |
Add an adaptive_sync output command
This enables/disables adaptive synchronization on the output.
For now, the default is disabled because it might cause flickering on
some hardware if clients don't submit frames at regular enough
intervals. In the future an "auto" option will only enable adaptive sync
if a fullscreen client opts-in via a Wayland protocol.
Diffstat (limited to 'include/sway/commands.h')
-rw-r--r-- | include/sway/commands.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/sway/commands.h b/include/sway/commands.h index f992b441..bbbdfc80 100644 --- a/include/sway/commands.h +++ b/include/sway/commands.h @@ -266,6 +266,7 @@ sway_cmd input_cmd_xkb_rules; sway_cmd input_cmd_xkb_switch_layout; sway_cmd input_cmd_xkb_variant; +sway_cmd output_cmd_adaptive_sync; sway_cmd output_cmd_background; sway_cmd output_cmd_disable; sway_cmd output_cmd_dpms; |