wip: screencopy

This commit is contained in:
Victoria Brekenfeld 2022-11-03 18:51:27 +01:00
parent dd100d65e4
commit 5a4df346a8
26 changed files with 2046 additions and 327 deletions

View file

@ -73,10 +73,13 @@ fn main() -> Result<()> {
// do we need to trigger another render
if data.state.common.dirty_flag.swap(false, Ordering::SeqCst) {
// TODO: Render workspace sessions
for output in data.state.common.shell.outputs() {
data.state
.backend
.schedule_render(&data.state.common.event_loop_handle, output)
data.state.backend.schedule_render(
&data.state.common.event_loop_handle,
output,
None,
)
}
}