1
0
Fork 0
forked from wry/wry

virtual-output: add support for virtual outputs

This commit is contained in:
Julian Orth 2026-03-17 18:42:49 +01:00
parent c25d17514d
commit 530e66ef78
27 changed files with 1480 additions and 9 deletions

View file

@ -19,7 +19,9 @@ use {
},
std::{rc::Rc, time::Duration},
};
pub use {hardware_cursor::handle_hardware_cursor_tick, idle::idle};
pub use {
connector::handle as handle_connector, hardware_cursor::handle_hardware_cursor_tick, idle::idle,
};
pub async fn handle_backend_events(state: Rc<State>) {
let mut beh = BackendEventHandler { state };