diff options
author | Simon Zeni <simon@bl4ckb0ne.ca> | 2021-09-30 10:53:18 -0400 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2021-11-25 16:49:05 +0000 |
commit | 1d3dd7fc08f22f2e82cb812ced822369e984d845 (patch) | |
tree | 88e9df92e514c019edc40f029927455efa1801d2 /include/backend | |
parent | b234edcf58bbd73d64e8d5986aa5cc380d2f48d6 (diff) |
backend: remove noop backend
Diffstat (limited to 'include/backend')
-rw-r--r-- | include/backend/noop.h | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/include/backend/noop.h b/include/backend/noop.h deleted file mode 100644 index 5a8ee677..00000000 --- a/include/backend/noop.h +++ /dev/null @@ -1,27 +0,0 @@ -#ifndef BACKEND_NOOP_H -#define BACKEND_NOOP_H - -#include <wlr/backend/noop.h> -#include <wlr/backend/interface.h> - -struct wlr_noop_backend { - struct wlr_backend backend; - struct wl_display *display; - struct wl_list outputs; - size_t last_output_num; - bool started; - - struct wl_listener display_destroy; -}; - -struct wlr_noop_output { - struct wlr_output wlr_output; - - struct wlr_noop_backend *backend; - struct wl_list link; -}; - -struct wlr_noop_backend *noop_backend_from_backend( - struct wlr_backend *wlr_backend); - -#endif |