aboutsummaryrefslogtreecommitdiff
path: root/include/backend/noop.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/backend/noop.h')
-rw-r--r--include/backend/noop.h27
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