diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-12-13 19:33:59 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-13 19:33:59 -0500 |
commit | a9fb071d49b244b72846b384a9e2ef2d9b03a05f (patch) | |
tree | 2dd955aac99a9730955b052d79dd58ae88f3b927 /include/backend/wayland.h | |
parent | 16ee728f57dbb36429f32e745fe040f364545702 (diff) | |
parent | a1302cc4a517b2a2851b0b41848cf2f001b954f3 (diff) |
Merge pull request #485 from emersion/wl-backend-multiple-outputs
Multiple outputs with Wayland backend
Diffstat (limited to 'include/backend/wayland.h')
-rw-r--r-- | include/backend/wayland.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/backend/wayland.h b/include/backend/wayland.h index 1e8a55d2..7e2ec0d6 100644 --- a/include/backend/wayland.h +++ b/include/backend/wayland.h @@ -7,6 +7,7 @@ #include <wayland-egl.h> #include <wlr/render/egl.h> #include <wlr/backend/wayland.h> +#include <wlr/types/wlr_box.h> #include <wlr/types/wlr_output.h> #include <wlr/types/wlr_input_device.h> #include <wayland-util.h> @@ -75,6 +76,8 @@ void wlr_wl_registry_poll(struct wlr_wl_backend *backend); void wlr_wl_output_update_cursor(struct wlr_wl_backend_output *output); struct wlr_wl_backend_output *wlr_wl_output_for_surface( struct wlr_wl_backend *backend, struct wl_surface *surface); +void wlr_wl_output_layout_get_box(struct wlr_wl_backend *backend, + struct wlr_box *box); extern const struct wl_seat_listener seat_listener; |