From 756835f90e5c778fb132f7220a3602fa5be3f261 Mon Sep 17 00:00:00 2001 From: Simon Gellis Date: Mon, 4 Nov 2024 21:53:59 -0500 Subject: [PATCH] Turn vulkan back on because my linux partition needs it --- src/app.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.rs b/src/app.rs index 134a2b4..ae029ef 100644 --- a/src/app.rs +++ b/src/app.rs @@ -44,7 +44,7 @@ struct AppWindow { impl AppWindow { fn setup_gpu(event_loop: &ActiveEventLoop, client: &EmulatorClient) -> Self { let instance = wgpu::Instance::new(wgpu::InstanceDescriptor { - backends: wgpu::Backends::PRIMARY.difference(wgpu::Backends::VULKAN), + backends: wgpu::Backends::PRIMARY, ..Default::default() });