mirror of
https://github.com/italicsjenga/winit-sonoma-fix.git
synced 2025-01-11 05:21:31 +11:00
wayland: use an invisible surface as shell surface (#835)
This decorelates the window management from the actual user content, meaning: - the created window no longer needs the user to draw something to start existing - it reduces our need to do roundtrips during initialization to avoid protocol errors
This commit is contained in:
parent
cf713bef31
commit
65587ef43a
|
@ -41,6 +41,7 @@
|
||||||
- Remove `WindowBuilder::multitouch` field, since it was only implemented on a few platforms. Multitouch is always enabled now.
|
- Remove `WindowBuilder::multitouch` field, since it was only implemented on a few platforms. Multitouch is always enabled now.
|
||||||
- **Breaking:** On macOS, change `ns` identifiers to use snake_case for consistency with iOS's `ui` identifiers.
|
- **Breaking:** On macOS, change `ns` identifiers to use snake_case for consistency with iOS's `ui` identifiers.
|
||||||
- Add `MonitorHandle::video_modes` method for retrieving supported video modes for the given monitor.
|
- Add `MonitorHandle::video_modes` method for retrieving supported video modes for the given monitor.
|
||||||
|
- On Wayland, the window now exists even if nothing has been drawn.
|
||||||
|
|
||||||
# Version 0.19.1 (2019-04-08)
|
# Version 0.19.1 (2019-04-08)
|
||||||
|
|
||||||
|
|
|
@ -68,7 +68,7 @@ features = [
|
||||||
[target.'cfg(any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd", target_os = "openbsd", target_os = "netbsd"))'.dependencies]
|
[target.'cfg(any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd", target_os = "openbsd", target_os = "netbsd"))'.dependencies]
|
||||||
wayland-client = { version = "0.23.0", features = [ "dlopen", "egl", "cursor", "eventloop"] }
|
wayland-client = { version = "0.23.0", features = [ "dlopen", "egl", "cursor", "eventloop"] }
|
||||||
calloop = "0.4.2"
|
calloop = "0.4.2"
|
||||||
smithay-client-toolkit = "0.6"
|
smithay-client-toolkit = "0.6.1"
|
||||||
x11-dl = "2.18.3"
|
x11-dl = "2.18.3"
|
||||||
percent-encoding = "1.0"
|
percent-encoding = "1.0"
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
use std::collections::VecDeque;
|
use std::collections::VecDeque;
|
||||||
|
use std::io::{Seek, SeekFrom, Write};
|
||||||
use std::sync::{Arc, Mutex, Weak};
|
use std::sync::{Arc, Mutex, Weak};
|
||||||
|
|
||||||
use dpi::{LogicalPosition, LogicalSize};
|
use dpi::{LogicalPosition, LogicalSize};
|
||||||
|
@ -9,15 +10,17 @@ use window::{WindowAttributes, CursorIcon};
|
||||||
|
|
||||||
use sctk::surface::{get_dpi_factor, get_outputs};
|
use sctk::surface::{get_dpi_factor, get_outputs};
|
||||||
use sctk::window::{ConceptFrame, Event as WEvent, State as WState, Window as SWindow, Theme};
|
use sctk::window::{ConceptFrame, Event as WEvent, State as WState, Window as SWindow, Theme};
|
||||||
use sctk::reexports::client::Display;
|
use sctk::reexports::client::{Display, NewProxy};
|
||||||
use sctk::reexports::client::protocol::{wl_seat, wl_surface};
|
use sctk::reexports::client::protocol::{wl_seat, wl_surface, wl_subsurface, wl_shm};
|
||||||
use sctk::output::OutputMgr;
|
use sctk::output::OutputMgr;
|
||||||
|
|
||||||
use super::{make_wid, EventLoopWindowTarget, MonitorHandle, WindowId};
|
use super::{make_wid, EventLoopWindowTarget, MonitorHandle, WindowId};
|
||||||
use platform_impl::platform::wayland::event_loop::{available_monitors, primary_monitor};
|
use platform_impl::platform::wayland::event_loop::{available_monitors, primary_monitor};
|
||||||
|
|
||||||
pub struct Window {
|
pub struct Window {
|
||||||
surface: wl_surface::WlSurface,
|
_bg_surface: wl_surface::WlSurface,
|
||||||
|
user_surface: wl_surface::WlSurface,
|
||||||
|
_user_subsurface: wl_subsurface::WlSubsurface,
|
||||||
frame: Arc<Mutex<SWindow<ConceptFrame>>>,
|
frame: Arc<Mutex<SWindow<ConceptFrame>>>,
|
||||||
outputs: OutputMgr, // Access to info for all monitors
|
outputs: OutputMgr, // Access to info for all monitors
|
||||||
size: Arc<Mutex<(u32, u32)>>,
|
size: Arc<Mutex<(u32, u32)>>,
|
||||||
|
@ -36,16 +39,37 @@ impl Window {
|
||||||
let fullscreen = Arc::new(Mutex::new(false));
|
let fullscreen = Arc::new(Mutex::new(false));
|
||||||
|
|
||||||
let window_store = evlp.store.clone();
|
let window_store = evlp.store.clone();
|
||||||
let surface = evlp.env.create_surface(move |dpi, surface| {
|
let bg_surface = evlp
|
||||||
|
.env
|
||||||
|
.compositor
|
||||||
|
.create_surface(NewProxy::implement_dummy)
|
||||||
|
.unwrap();
|
||||||
|
let user_surface = evlp.env.create_surface(move |dpi, surface| {
|
||||||
window_store.lock().unwrap().dpi_change(&surface, dpi);
|
window_store.lock().unwrap().dpi_change(&surface, dpi);
|
||||||
surface.set_buffer_scale(dpi);
|
surface.set_buffer_scale(dpi);
|
||||||
});
|
});
|
||||||
|
let user_subsurface = evlp
|
||||||
|
.env
|
||||||
|
.subcompositor
|
||||||
|
.get_subsurface(&user_surface, &bg_surface, NewProxy::implement_dummy)
|
||||||
|
.unwrap();
|
||||||
|
user_subsurface.set_desync();
|
||||||
|
|
||||||
let window_store = evlp.store.clone();
|
let window_store = evlp.store.clone();
|
||||||
let my_surface = surface.clone();
|
let my_surface = user_surface.clone();
|
||||||
|
let my_bg_surface = bg_surface.clone();
|
||||||
|
|
||||||
|
// prepare a 1px buffer to display on the root window
|
||||||
|
let mut pool = sctk::utils::MemPool::new(&evlp.env.shm, || {}).unwrap();
|
||||||
|
pool.resize(4).unwrap();
|
||||||
|
pool.seek(SeekFrom::Start(0)).unwrap();
|
||||||
|
pool.write(&[0, 0, 0, 0]).unwrap();
|
||||||
|
pool.flush().unwrap();
|
||||||
|
let buffer = pool.buffer(0, 1, 1, 4, wl_shm::Format::Argb8888);
|
||||||
|
|
||||||
let mut frame = SWindow::<ConceptFrame>::init_from_env(
|
let mut frame = SWindow::<ConceptFrame>::init_from_env(
|
||||||
&evlp.env,
|
&evlp.env,
|
||||||
surface.clone(),
|
bg_surface.clone(),
|
||||||
(width, height),
|
(width, height),
|
||||||
move |event| match event {
|
move |event| match event {
|
||||||
WEvent::Configure { new_size, states } => {
|
WEvent::Configure { new_size, states } => {
|
||||||
|
@ -58,6 +82,12 @@ impl Window {
|
||||||
*(window.need_refresh.lock().unwrap()) = true;
|
*(window.need_refresh.lock().unwrap()) = true;
|
||||||
*(window.fullscreen.lock().unwrap()) = is_fullscreen;
|
*(window.fullscreen.lock().unwrap()) = is_fullscreen;
|
||||||
*(window.need_frame_refresh.lock().unwrap()) = true;
|
*(window.need_frame_refresh.lock().unwrap()) = true;
|
||||||
|
if !window.configured {
|
||||||
|
// this is our first configure event, display ourselves !
|
||||||
|
window.configured = true;
|
||||||
|
my_bg_surface.attach(Some(&buffer), 0, 0);
|
||||||
|
my_bg_surface.commit();
|
||||||
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -125,17 +155,19 @@ impl Window {
|
||||||
need_refresh: need_refresh.clone(),
|
need_refresh: need_refresh.clone(),
|
||||||
fullscreen: fullscreen.clone(),
|
fullscreen: fullscreen.clone(),
|
||||||
need_frame_refresh: need_frame_refresh.clone(),
|
need_frame_refresh: need_frame_refresh.clone(),
|
||||||
surface: surface.clone(),
|
surface: user_surface.clone(),
|
||||||
kill_switch: kill_switch.clone(),
|
kill_switch: kill_switch.clone(),
|
||||||
frame: Arc::downgrade(&frame),
|
frame: Arc::downgrade(&frame),
|
||||||
current_dpi: 1,
|
current_dpi: 1,
|
||||||
new_dpi: None,
|
new_dpi: None,
|
||||||
|
configured: false,
|
||||||
});
|
});
|
||||||
evlp.evq.borrow_mut().sync_roundtrip().unwrap();
|
|
||||||
|
|
||||||
Ok(Window {
|
Ok(Window {
|
||||||
display: evlp.display.clone(),
|
display: evlp.display.clone(),
|
||||||
surface: surface,
|
_bg_surface: bg_surface,
|
||||||
|
user_surface: user_surface,
|
||||||
|
_user_subsurface: user_subsurface,
|
||||||
frame: frame,
|
frame: frame,
|
||||||
outputs: evlp.env.outputs.clone(),
|
outputs: evlp.env.outputs.clone(),
|
||||||
size: size,
|
size: size,
|
||||||
|
@ -148,7 +180,7 @@ impl Window {
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn id(&self) -> WindowId {
|
pub fn id(&self) -> WindowId {
|
||||||
make_wid(&self.surface)
|
make_wid(&self.user_surface)
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn set_title(&self, title: &str) {
|
pub fn set_title(&self, title: &str) {
|
||||||
|
@ -214,7 +246,7 @@ impl Window {
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn hidpi_factor(&self) -> i32 {
|
pub fn hidpi_factor(&self) -> i32 {
|
||||||
get_dpi_factor(&self.surface)
|
get_dpi_factor(&self.user_surface)
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn set_decorations(&self, decorate: bool) {
|
pub fn set_decorations(&self, decorate: bool) {
|
||||||
|
@ -252,7 +284,6 @@ impl Window {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
pub fn set_theme<T: Theme>(&self, theme: T) {
|
pub fn set_theme<T: Theme>(&self, theme: T) {
|
||||||
self.frame.lock().unwrap().set_theme(theme)
|
self.frame.lock().unwrap().set_theme(theme)
|
||||||
}
|
}
|
||||||
|
@ -282,11 +313,11 @@ impl Window {
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn surface(&self) -> &wl_surface::WlSurface {
|
pub fn surface(&self) -> &wl_surface::WlSurface {
|
||||||
&self.surface
|
&self.user_surface
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn current_monitor(&self) -> MonitorHandle {
|
pub fn current_monitor(&self) -> MonitorHandle {
|
||||||
let output = get_outputs(&self.surface).last().unwrap().clone();
|
let output = get_outputs(&self.user_surface).last().unwrap().clone();
|
||||||
MonitorHandle {
|
MonitorHandle {
|
||||||
proxy: output,
|
proxy: output,
|
||||||
mgr: self.outputs.clone(),
|
mgr: self.outputs.clone(),
|
||||||
|
@ -325,6 +356,7 @@ struct InternalWindow {
|
||||||
frame: Weak<Mutex<SWindow<ConceptFrame>>>,
|
frame: Weak<Mutex<SWindow<ConceptFrame>>>,
|
||||||
current_dpi: i32,
|
current_dpi: i32,
|
||||||
new_dpi: Option<i32>,
|
new_dpi: Option<i32>,
|
||||||
|
configured: bool,
|
||||||
}
|
}
|
||||||
|
|
||||||
pub struct WindowStore {
|
pub struct WindowStore {
|
||||||
|
|
Loading…
Reference in a new issue