We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 875952b commit 114e249Copy full SHA for 114e249
examples/agdk-egui/Cargo.toml
@@ -9,7 +9,7 @@ resolver = "2"
9
[dependencies]
10
log = "0.4"
11
winit = "0.26"
12
-wgpu = "0.12.0"
+wgpu = "0.13.0"
13
pollster = "0.2"
14
egui = "0.18"
15
egui-wgpu = { version = "0.18", features = [ "winit" ] }
examples/agdk-egui/src/lib.rs
@@ -122,7 +122,7 @@ fn _main(event_loop: EventLoop<Event>) {
122
&ctx.tessellate(full_output.shapes),
123
&full_output.textures_delta);
124
125
- if full_output.needs_repaint {
+ if full_output.repaint_after.is_zero() {
126
window.request_redraw();
127
}
128
0 commit comments