Desktop: Remove unnecessary dependencies in the desktop crate (#2934)

* remove unnecessary dependencies

* Add start-desktop
This commit is contained in:
Adam Gerhant
2025-07-25 01:20:27 -07:00
committed by GitHub
parent e6f1ad96b3
commit 735d58a647
5 changed files with 22 additions and 28 deletions

View File

@@ -71,7 +71,7 @@ impl ApplicationHandler<CustomEvent> for WinitApp {
)
.unwrap(),
);
let graphics_state = pollster::block_on(GraphicsState::new(window.clone()));
let graphics_state = futures::executor::block_on(GraphicsState::new(window.clone()));
self.window = Some(window);
self.graphics_state = Some(graphics_state);