diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-09-23 00:29:53 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2017-09-23 00:30:39 -0400 |
commit | b6d7c3ed8ec6ae29af5d585db5417394ff49f3c7 (patch) | |
tree | c3faaa0fdc17e7f4d72a9843bb64d0aed0a2c396 /include/backend | |
parent | 550748681db7f75888beab41a1a85eb86876604c (diff) |
Initialize display, backend; add frame handling
Diffstat (limited to 'include/backend')
-rw-r--r-- | include/backend/wayland.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/backend/wayland.h b/include/backend/wayland.h index 5e278dc9..42739c18 100644 --- a/include/backend/wayland.h +++ b/include/backend/wayland.h @@ -1,6 +1,7 @@ #ifndef _WLR_INTERNAL_BACKEND_WAYLAND_H #define _WLR_INTERNAL_BACKEND_WAYLAND_H +#include <stdbool.h> #include <wayland-client.h> #include <wayland-server.h> #include <wayland-egl.h> @@ -14,6 +15,7 @@ struct wlr_wl_backend { struct wlr_backend backend; /* local state */ + bool started; struct wl_display *local_display; list_t *devices; list_t *outputs; |