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
parent 36450a9e33
commit aac86adf7f
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)
{