halley-wl 0.3.2

Wayland backend and rendering implementation for the Halley Wayland compositor.
1
2
3
4
5
6
7
8
9
10
#[cfg(test)]
pub(crate) mod model;

use std::time::Instant;

use crate::compositor::root::Halley;

pub(crate) fn activate_rail_item(st: &mut Halley, node_id: halley_core::field::NodeId) -> bool {
    crate::compositor::actions::window::focus_or_reveal_surface_node(st, node_id, Instant::now())
}