diff options
| author | Kenny Levinsen <kl@kl.wtf> | 2024-11-17 12:38:32 +0100 |
|---|---|---|
| committer | Simon Ser <contact@emersion.fr> | 2024-11-28 20:40:23 +0100 |
| commit | b072958b49b3931957291819ec3c82ad6c9eb5b8 (patch) | |
| tree | e1bb9921dabc2a8403e3a865c221f1306d6db893 | |
| parent | 27d4f15516c15599d61e45602e9698ca1532e64e (diff) | |
ipc-server: Force modeset if needed after executing commands
IPC clients generally expect executed commands to have taken effect when
the command completes, while delayed modeset means that it can take
several milliseconds more before e.g. an output is enabled.
However, modesetting on every output command in the IPC call could on
systems with already slow modesetting behavior lead to an unresponsive
system for a not insignificant period of time.
To strike a balance, force modeset once all the commands of this IPC
call have executed if a modeset is pending.
(cherry picked from commit a2c73c9b8b426417e0253ea0420b98298af1c963)
| -rw-r--r-- | include/sway/config.h | 1 | ||||
| -rw-r--r-- | sway/desktop/output.c | 4 | ||||
| -rw-r--r-- | sway/ipc-server.c | 6 |
3 files changed, 11 insertions, 0 deletions
diff --git a/include/sway/config.h b/include/sway/config.h index 013853c8..bb770c6f 100644 --- a/include/sway/config.h +++ b/include/sway/config.h @@ -706,6 +706,7 @@ void free_output_config(struct output_config *oc); void request_modeset(void); void force_modeset(void); +bool modeset_is_pending(void); bool spawn_swaybg(void); diff --git a/sway/desktop/output.c b/sway/desktop/output.c index 46cd73a2..01d209a2 100644 --- a/sway/desktop/output.c +++ b/sway/desktop/output.c @@ -426,6 +426,10 @@ void request_modeset(void) { } } +bool modeset_is_pending(void) { + return server.delayed_modeset != NULL; +} + void force_modeset(void) { if (server.delayed_modeset != NULL) { wl_event_source_remove(server.delayed_modeset); diff --git a/sway/ipc-server.c b/sway/ipc-server.c index 7f353c0e..b934bb56 100644 --- a/sway/ipc-server.c +++ b/sway/ipc-server.c @@ -648,6 +648,12 @@ void ipc_client_handle_command(struct ipc_client *client, uint32_t payload_lengt } list_t *res_list = execute_command(buf, NULL, NULL); + if (modeset_is_pending()) { + // IPC expects commands to have taken immediate effect, so we need + // to force a modeset after output commands. We do a single modeset + // here to avoid modesetting for every output command in sequence. + force_modeset(); + } transaction_commit_dirty(); char *json = cmd_results_to_json(res_list); int length = strlen(json); |
