This commit is contained in:
Simon Zeni 2026-04-12 11:46:46 +00:00 committed by GitHub
commit 97c866a3d4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 97 additions and 3 deletions

View file

@ -284,6 +284,7 @@ sway_cmd input_cmd_xkb_switch_layout;
sway_cmd input_cmd_xkb_variant;
sway_cmd output_cmd_adaptive_sync;
sway_cmd output_cmd_allow_drm_leasing;
sway_cmd output_cmd_allow_tearing;
sway_cmd output_cmd_background;
sway_cmd output_cmd_color_profile;

View file

@ -297,6 +297,7 @@ struct output_config {
enum color_profile color_profile;
struct wlr_color_transform *color_transform;
int allow_tearing;
int allow_drm_leasing;
int hdr;
char *background;

View file

@ -71,6 +71,7 @@ struct sway_output {
struct wl_event_source *repaint_timer;
bool allow_tearing;
bool allow_drm_leasing;
bool hdr;
};