Basic layer popup rendering

This commit is contained in:
Drew DeVault 2018-04-14 20:36:01 -04:00 committed by Guido Günther
parent d3cdb00208
commit 278aa84619
3 changed files with 52 additions and 0 deletions

View file

@ -109,4 +109,8 @@ bool wlr_surface_is_layer_surface(struct wlr_surface *surface);
struct wlr_layer_surface *wlr_layer_surface_from_wlr_surface(
struct wlr_surface *surface);
/* Calls the iterator function for each sub-surface and popup of this surface */
void wlr_layer_surface_for_each_surface(struct wlr_layer_surface *surface,
wlr_surface_iterator_func_t iterator, void *user_data);
#endif