backend/wayland: implement multi-output touch

This commit is contained in:
Lasse Heitgres 2026-06-10 14:08:23 +02:00
parent a6b3d52f5d
commit 2ccfa6d736
4 changed files with 168 additions and 81 deletions

View file

@ -1151,6 +1151,9 @@ static void output_start(struct wlr_wl_output *output) {
if (seat->wl_pointer) {
create_pointer(seat, output);
}
if (seat->wl_touch) {
create_touch(seat, output);
}
}
}