This PR unifies the event loop code for Wayland and X11. On Wayland, blocking dispatch is now used. On X11, the invisible window is no longer needed. Release Notes: - N/A --------- Co-authored-by: Dzmitry Malyshau <kvark@fastmail.com> Co-authored-by: Tadeo Kondrak <me@tadeo.ca> Co-authored-by: Mikayla Maki <mikayla@zed.dev> Co-authored-by: julia <julia@zed.dev>
13 lines
207 B
Rust
13 lines
207 B
Rust
mod client;
|
|
mod dispatcher;
|
|
mod platform;
|
|
mod text_system;
|
|
mod util;
|
|
mod wayland;
|
|
mod x11;
|
|
|
|
pub(crate) use dispatcher::*;
|
|
pub(crate) use platform::*;
|
|
pub(crate) use text_system::*;
|
|
// pub(crate) use x11::*;
|