cage: add basic wlr-output-management support

Co-authored-by: Dima Krasner <dima@dimakrasner.com>
This commit is contained in:
Jonathan GUILLOT 2023-07-21 15:37:38 +02:00 committed by Simon Ser
parent 27b6971b36
commit 6f78d9d5b2
6 changed files with 170 additions and 21 deletions

9
view.c
View file

@ -97,6 +97,15 @@ view_position(struct cg_view *view)
}
}
void
view_position_all(struct cg_server *server)
{
struct cg_view *view;
wl_list_for_each (view, &server->views, link) {
view_position(view);
}
}
void
view_unmap(struct cg_view *view)
{