Merge pull request #146 from olekolek1000/wayvr_dashboard_ipc

WayVR: Layouting system, state changing feedback, process userdata, various IPC changes
This commit is contained in:
Aleksander
2025-01-31 20:12:04 +01:00
committed by GitHub
10 changed files with 408 additions and 88 deletions
+5 -1
View File
@@ -382,7 +382,11 @@ pub fn openxr_run(running: Arc<AtomicBool>, show_by_default: bool) -> Result<(),
}
#[cfg(feature = "wayvr")]
crate::overlays::wayvr::tick_events::<OpenXrOverlayData>(&mut app_state, &mut overlays)?;
if let Err(e) =
crate::overlays::wayvr::tick_events::<OpenXrOverlayData>(&mut app_state, &mut overlays)
{
log::error!("WayVR tick_events failed: {:?}", e);
}
for o in overlays.iter_mut() {
if !o.state.want_visible {