Merge pull request #834 from emersion/surface-is-subsurface

Add wlr_surface_is_subsurface and wlr_subsurface_from_surface
This commit is contained in:
emersion 2018-04-05 14:16:45 -04:00 committed by GitHub
commit 19b576734e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 21 additions and 1 deletions

View file

@ -4,6 +4,8 @@
#include <wayland-server.h>
#include <wlr/render/wlr_renderer.h>
struct wlr_surface;
struct wlr_compositor {
struct wl_global *wl_global;
struct wl_list wl_resources;
@ -22,4 +24,8 @@ void wlr_compositor_destroy(struct wlr_compositor *wlr_compositor);
struct wlr_compositor *wlr_compositor_create(struct wl_display *display,
struct wlr_renderer *renderer);
bool wlr_surface_is_subsurface(struct wlr_surface *surface);
struct wlr_subsurface *wlr_subsurface_from_surface(struct wlr_surface *surface);
#endif