Update egui, smithay-egui, smithay

This commit is contained in:
Ian Douglas Scott 2024-09-26 13:43:01 -07:00 committed by Victoria Brekenfeld
parent afdb656778
commit a96394f7a6
7 changed files with 131 additions and 245 deletions

View file

@ -5,6 +5,7 @@ use smithay::{
delegate_pointer_constraints,
input::pointer::PointerHandle,
reexports::wayland_server::protocol::wl_surface::WlSurface,
utils::{Logical, Point},
wayland::{
pointer_constraints::{with_pointer_constraint, PointerConstraintsHandler},
seat::WaylandFocus,
@ -23,5 +24,14 @@ impl PointerConstraintsHandler for State {
});
}
}
fn cursor_position_hint(
&mut self,
_surface: &WlSurface,
_pointer: &PointerHandle<Self>,
_location: Point<f64, Logical>,
) {
// TODO
}
}
delegate_pointer_constraints!(State);