diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-08-17 08:07:29 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-17 08:07:29 -0400 |
commit | 30b676e3a8c7bdde4cba535de6306b6119482528 (patch) | |
tree | 3ebea1470caa643400783346fac7af2c0a2688ea /include/backend/wayland.h | |
parent | e7fa4f12e16cf2a38b5bea064e89a53d88857274 (diff) | |
parent | e2e149784b2659e43f0459e9d659d828687d7c04 (diff) |
Merge pull request #98 from martinetd/wayland_backend_xdg
Wayland backend xdg
Diffstat (limited to 'include/backend/wayland.h')
-rw-r--r-- | include/backend/wayland.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/backend/wayland.h b/include/backend/wayland.h index 92ae63ba..5e278dc9 100644 --- a/include/backend/wayland.h +++ b/include/backend/wayland.h @@ -24,7 +24,7 @@ struct wlr_wl_backend { struct wl_event_source *remote_display_src; struct wl_registry *registry; struct wl_compositor *compositor; - struct wl_shell *shell; + struct zxdg_shell_v6 *shell; struct wl_shm *shm; struct wl_seat *seat; struct wl_pointer *pointer; @@ -36,7 +36,8 @@ struct wlr_wl_backend_output { struct wlr_wl_backend *backend; struct wl_surface *surface; - struct wl_shell_surface *shell_surface; + struct zxdg_surface_v6 *xdg_surface; + struct zxdg_toplevel_v6 *xdg_toplevel; struct wl_egl_window *egl_window; struct wl_callback *frame_callback; |