Drop view_for_each_surface and view_for_each_popup_surface

With the scene-graph, these are no longer used.
This commit is contained in:
Simon Ser 2021-08-10 11:37:19 +02:00 committed by Jente Hidskes
parent f544483340
commit 6d60c6c464
4 changed files with 0 additions and 44 deletions

15
view.c
View file

@ -204,21 +204,6 @@ view_position(struct cg_view *view)
}
}
void
view_for_each_surface(struct cg_view *view, wlr_surface_iterator_func_t iterator, void *data)
{
view->impl->for_each_surface(view, iterator, data);
}
void
view_for_each_popup_surface(struct cg_view *view, wlr_surface_iterator_func_t iterator, void *data)
{
if (!view->impl->for_each_popup_surface) {
return;
}
view->impl->for_each_popup_surface(view, iterator, data);
}
void
view_unmap(struct cg_view *view)
{