1
0
Fork 0
forked from wry/wry

wayland: implement tablet-v2

This commit is contained in:
Julian Orth 2024-05-01 00:09:16 +02:00
parent 86e283d255
commit 7ed499eabd
62 changed files with 5174 additions and 318 deletions

View file

@ -5,7 +5,11 @@ use {
utils::copyhashmap::{CopyHashMap, Locked},
},
ahash::AHashMap,
std::{cell::RefCell, collections::hash_map::Entry, rc::Rc},
std::{
cell::{Ref, RefCell},
collections::hash_map::Entry,
rc::Rc,
},
};
pub struct Bindings<P> {
@ -84,4 +88,8 @@ impl<P: Object> PerClientBindings<P> {
}
}
}
pub fn borrow(&self) -> Ref<AHashMap<ClientId, AHashMap<ObjectId, Rc<P>>>> {
self.bindings.borrow()
}
}