diff --git a/profile.json b/profile.json
index bfaecf7..671d51e 100644
--- a/profile.json
+++ b/profile.json
@@ -4,12 +4,12 @@
{
"geometry": {
"pos": {
- "x": 0,
- "y": 312
+ "x": 1360,
+ "y": 0
},
"size": {
- "x": 1360,
- "y": 768
+ "x": 1920,
+ "y": 1080
}
},
"duration": 1800,
diff --git a/zsw-egui/src/lib.rs b/zsw-egui/src/lib.rs
index e31d67d..46cf066 100644
--- a/zsw-egui/src/lib.rs
+++ b/zsw-egui/src/lib.rs
@@ -7,13 +7,12 @@
use {
anyhow::Context,
crossbeam::atomic::AtomicCell,
+ futures::{channel::mpsc, SinkExt},
std::{
sync::Arc,
- task::Waker,
time::{Duration, Instant},
},
winit::window::Window,
- zsw_util::FetchUpdate,
zsw_wgpu::Wgpu,
};
@@ -25,9 +24,6 @@ pub struct Egui {
/// Last frame time
frame_time: AtomicCell