aboutsummaryrefslogtreecommitdiff
path: root/include/wlr/backend
diff options
context:
space:
mode:
authoremersion <contact@emersion.fr>2017-12-17 18:49:20 +0100
committeremersion <contact@emersion.fr>2017-12-17 18:49:20 +0100
commitbc5bdb7793d7737a42489ddb07b2fbb7f74a47f5 (patch)
tree6a38ed819d15df84951ab4aa1b1fea9b1dce0526 /include/wlr/backend
parent0256de00029e8f17da0514e14460fb9ff2283433 (diff)
Add headless input devices
Diffstat (limited to 'include/wlr/backend')
-rw-r--r--include/wlr/backend/headless.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/wlr/backend/headless.h b/include/wlr/backend/headless.h
index 245a65dc..68ad84da 100644
--- a/include/wlr/backend/headless.h
+++ b/include/wlr/backend/headless.h
@@ -7,8 +7,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);
-struct wlr_input_device *wlr_headless_add_input(struct wlr_backend *backend,
- enum wlr_input_device_type type);
+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);
#endif