diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2021-10-04 10:04:46 -0400 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2021-10-04 10:04:46 -0400 |
| commit | 2c2b6371398aaf735204ac1fa5196125250a165e (patch) | |
| tree | 0cc1cdf1d76347b92376fcf9087792e1b2f69a49 /include | |
| parent | 220de51396c1a0f0c74518008a502573dc0c269f (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 'include')
| -rw-r--r-- | include/sway/server.h | 1 | ||||
| -rw-r--r-- | include/sway/tree/root.h | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/include/sway/server.h b/include/sway/server.h index 109097d7..7ac2af26 100644 --- a/include/sway/server.h +++ b/include/sway/server.h @@ -33,7 +33,6 @@ struct sway_server { const char *socket; struct wlr_backend *backend; - struct wlr_backend *noop_backend; // secondary headless backend used for creating virtual outputs on-the-fly struct wlr_backend *headless_backend; struct wlr_renderer *renderer; diff --git a/include/sway/tree/root.h b/include/sway/tree/root.h index e8f4d573..5d4a2f2d 100644 --- a/include/sway/tree/root.h +++ b/include/sway/tree/root.h @@ -31,7 +31,7 @@ struct sway_root { list_t *scratchpad; // struct sway_container // For when there's no connected outputs - struct sway_output *noop_output; + struct sway_output *fallback_output; struct sway_container *fullscreen_global; |
