From 609814de6b6fb12d315b67efc0d92683ca23dc68 Mon Sep 17 00:00:00 2001 From: Joshua Groves Date: Mon, 28 Nov 2022 02:23:10 -0330 Subject: [PATCH] Use `Fifo` for example --- examples/hello-world.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/hello-world.rs b/examples/hello-world.rs index 1cd361b..76faeba 100644 --- a/examples/hello-world.rs +++ b/examples/hello-world.rs @@ -56,7 +56,7 @@ async fn run() { format: swapchain_format, width: size.width, height: size.height, - present_mode: PresentMode::Mailbox, + present_mode: PresentMode::Fifo, alpha_mode: CompositeAlphaMode::Opaque, }; surface.configure(&device, &config);