diff options
author | Dominique Martinet <asmadeus@codewreck.org> | 2017-12-19 20:20:32 +0100 |
---|---|---|
committer | Dominique Martinet <asmadeus@codewreck.org> | 2017-12-19 20:20:32 +0100 |
commit | 169bc9fa100afd01c25ec140e7dcae565920c6a4 (patch) | |
tree | f4f80e7aa6fe89a0a772f8640535ada27ed131e0 /include/wlr | |
parent | d9eaca6c9fa162c3b47ce61ecdeab4dc73620b0a (diff) |
wl backend: add wlr_input_device_is_wl
Diffstat (limited to 'include/wlr')
-rw-r--r-- | include/wlr/backend/wayland.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/wlr/backend/wayland.h b/include/wlr/backend/wayland.h index bed03f51..b10ffee3 100644 --- a/include/wlr/backend/wayland.h +++ b/include/wlr/backend/wayland.h @@ -4,6 +4,7 @@ #include <wayland-client.h> #include <wayland-server.h> #include <wlr/backend.h> +#include <wlr/types/wlr_input_device.h> #include <wlr/types/wlr_output.h> #include <stdbool.h> @@ -27,6 +28,11 @@ struct wlr_output *wlr_wl_output_create(struct wlr_backend *backend); bool wlr_backend_is_wl(struct wlr_backend *backend); /** + * True if the given input device is a wlr_wl_input_device. + */ +bool wlr_input_device_is_wl(struct wlr_input_device *device); + +/** * True if the given output is a wlr_wl_backend_output. */ bool wlr_output_is_wl(struct wlr_output *output); |