diff options
author | Simon Zeni <simon@bl4ckb0ne.ca> | 2021-10-04 10:04:46 -0400 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2021-11-25 17:48:34 +0100 |
commit | 0cd8efe0bb669e71e9cdc30d96ae466cb583e605 (patch) | |
tree | 0cc1cdf1d76347b92376fcf9087792e1b2f69a49 /sway/server.c | |
parent | 729e18bff5ff5a648a309d645cae100608defd4c (diff) |
sway: replace noop_output by fallback_output
wlroots removed the support for the noop backend. Instead we rely on the
headless backend to provide the fallback output.
Diffstat (limited to 'sway/server.c')
-rw-r--r-- | sway/server.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/sway/server.c b/sway/server.c index 246f9c4f..ff269c79 100644 --- a/sway/server.c +++ b/sway/server.c @@ -7,7 +7,6 @@ #include <wlr/backend.h> #include <wlr/backend/headless.h> #include <wlr/backend/multi.h> -#include <wlr/backend/noop.h> #include <wlr/backend/session.h> #include <wlr/config.h> #include <wlr/render/wlr_renderer.h> @@ -217,11 +216,6 @@ bool server_init(struct sway_server *server) { return false; } - server->noop_backend = wlr_noop_backend_create(server->wl_display); - - struct wlr_output *wlr_output = wlr_noop_add_output(server->noop_backend); - root->noop_output = output_create(wlr_output); - server->headless_backend = wlr_headless_backend_create(server->wl_display); if (!server->headless_backend) { sway_log(SWAY_ERROR, "Failed to create secondary headless backend"); @@ -231,6 +225,10 @@ bool server_init(struct sway_server *server) { wlr_multi_backend_add(server->backend, server->headless_backend); } + struct wlr_output *wlr_output = + wlr_headless_add_output(server->headless_backend, 800, 600); + root->fallback_output = output_create(wlr_output); + // This may have been set already via -Dtxn-timeout if (!server->txn_timeout_ms) { server->txn_timeout_ms = 200; @@ -287,6 +285,7 @@ bool server_start(struct sway_server *server) { wlr_backend_destroy(server->backend); return false; } + return true; } |