Flesh out wayland backend registry

This commit is contained in:
Drew DeVault 2017-04-25 19:19:21 -04:00
parent de01e654ce
commit 5ca9d612f4
7 changed files with 156 additions and 16 deletions

View file

@ -11,8 +11,8 @@ struct wlr_wl_backend {
struct wl_display *local_display;
/* remote state */
struct wl_display *remote_display;
struct wl_registry *remote_registry;
struct wl_compositor *remote_compositor;
struct wl_registry *registry;
struct wl_compositor *compositor;
struct wl_shell *shell;
struct wl_shm *shm;
struct wlr_wl_seat *seat;
@ -21,4 +21,7 @@ struct wlr_wl_backend {
void wlr_wlb_registry_poll(struct wlr_wl_backend *backend);
extern const struct wl_seat_listener seat_listener;
extern const struct wl_output_listener output_listener;
#endif