aboutsummaryrefslogtreecommitdiff
path: root/backend/wayland
diff options
context:
space:
mode:
authorDominique Martinet <asmadeus@codewreck.org>2017-12-19 20:20:32 +0100
committerDominique Martinet <asmadeus@codewreck.org>2017-12-19 20:20:32 +0100
commit169bc9fa100afd01c25ec140e7dcae565920c6a4 (patch)
treef4f80e7aa6fe89a0a772f8640535ada27ed131e0 /backend/wayland
parentd9eaca6c9fa162c3b47ce61ecdeab4dc73620b0a (diff)
wl backend: add wlr_input_device_is_wl
Diffstat (limited to 'backend/wayland')
-rw-r--r--backend/wayland/wl_seat.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/backend/wayland/wl_seat.c b/backend/wayland/wl_seat.c
index 0d4ebc8d..ddee268d 100644
--- a/backend/wayland/wl_seat.c
+++ b/backend/wayland/wl_seat.c
@@ -203,6 +203,10 @@ static struct wlr_input_device_impl input_device_impl = {
.destroy = input_device_destroy
};
+bool wlr_input_device_is_wl(struct wlr_input_device *dev) {
+ return dev->impl == &input_device_impl;
+}
+
static struct wlr_input_device *allocate_device(struct wlr_wl_backend *backend,
enum wlr_input_device_type type) {
struct wlr_wl_input_device *wlr_wl_dev;