diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-06-28 17:25:01 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2017-06-28 17:25:01 -0400 |
commit | 18e6ddc1c5b091a66113ecf0d761a37980882ce3 (patch) | |
tree | 582dc37c8aad72a1083374549aa28da4d239896f /include | |
parent | f5b7bc033eced5c1ba3ba63b52985fb9b0e9f618 (diff) |
Remove wlr_compositor
Diffstat (limited to 'include')
-rw-r--r-- | include/wlr/wayland/wlr_compositor.h | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/include/wlr/wayland/wlr_compositor.h b/include/wlr/wayland/wlr_compositor.h deleted file mode 100644 index 2c2ade62..00000000 --- a/include/wlr/wayland/wlr_compositor.h +++ /dev/null @@ -1,25 +0,0 @@ -#ifndef _WLR_COMPOSITOR_H -#define _WLR_COMPOSITOR_H -#include <wayland-server.h> - -struct wlr_compositor_state; - -struct wlr_compositor { - struct wlr_compositor_state *state; - void *user_data; - struct wl_global *wl_global; - struct wl_list wl_resources; - - struct { - /** Emits a reference to the wl_resource just created */ - struct wl_signal bound; - /** Emits a reference to the wl_surface just created */ - struct wl_signal create_surface; - /** Emits a reference to the wl_region just created */ - struct wl_signal create_region; - } events; -}; - -struct wlr_compositor *wlr_compositor_init(struct wl_display *display); - -#endif |