Implement lists sharing
This commit is contained in:
parent
9668878f26
commit
4c0413bc7c
6 changed files with 55 additions and 21 deletions
|
|
@ -71,6 +71,10 @@ impl Deref<Window> for HeadlessContext {
|
|||
#[cfg(feature = "window")]
|
||||
impl Window {
|
||||
pub fn new(builder: WindowBuilder) -> Result<Window, CreationError> {
|
||||
if builder.sharing.is_some() {
|
||||
unimplemented!()
|
||||
}
|
||||
|
||||
Window::new_impl(builder.dimensions, builder.title.as_slice(), builder.monitor, true)
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue