aboutsummaryrefslogtreecommitdiff
path: root/include/wlr
diff options
context:
space:
mode:
authorSimon Zeni <simon@bl4ckb0ne.ca>2022-01-27 10:00:57 -0500
committerKirill Primak <vyivel@eclair.cafe>2022-02-21 17:11:32 +0000
commit7d560df90e7ee684dc26306f44a0b3c7f8cf2702 (patch)
treea03e65d1db88f86dfdaaf68f0c2c5d3f4798ea50 /include/wlr
parentcff4abc5b15f2303a6e754b3e4bacd2bdef5811e (diff)
backend/headless: remove unused wlr_headless_input_device
Diffstat (limited to 'include/wlr')
-rw-r--r--include/wlr/backend/headless.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/include/wlr/backend/headless.h b/include/wlr/backend/headless.h
index 07dac9b8..f4735483 100644
--- a/include/wlr/backend/headless.h
+++ b/include/wlr/backend/headless.h
@@ -25,15 +25,8 @@ struct wlr_backend *wlr_headless_backend_create(struct wl_display *display);
*/
struct wlr_output *wlr_headless_add_output(struct wlr_backend *backend,
unsigned int width, unsigned int height);
-/**
- * Creates a new input device. The caller is responsible for manually raising
- * any event signals on the new input device if it wants to simulate input
- * events.
- */
-struct wlr_input_device *wlr_headless_add_input_device(
- struct wlr_backend *backend, enum wlr_input_device_type type);
+
bool wlr_backend_is_headless(struct wlr_backend *backend);
-bool wlr_input_device_is_headless(struct wlr_input_device *device);
bool wlr_output_is_headless(struct wlr_output *output);
#endif