From 10689784be7352baa5616fb1b69fdadae1589ed7 Mon Sep 17 00:00:00 2001 From: Quaternions Date: Tue, 20 Aug 2024 14:11:00 -0700 Subject: [PATCH] graphics_worker: untab --- src/graphics_worker.rs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/graphics_worker.rs b/src/graphics_worker.rs index af66b2d6..af028ef7 100644 --- a/src/graphics_worker.rs +++ b/src/graphics_worker.rs @@ -17,12 +17,12 @@ WorkerDescription{ //up to three frames in flight, dropping new frame requests when all three are busy, and dropping output frames when one renders out of order pub fn new<'a>( - mut graphics:crate::graphics::GraphicsState, - mut config:wgpu::SurfaceConfiguration, - surface:wgpu::Surface<'a>, - device:wgpu::Device, - queue:wgpu::Queue, - )->crate::compat_worker::INWorker<'a,Instruction>{ + mut graphics:crate::graphics::GraphicsState, + mut config:wgpu::SurfaceConfiguration, + surface:wgpu::Surface<'a>, + device:wgpu::Device, + queue:wgpu::Queue, +)->crate::compat_worker::INWorker<'a,Instruction>{ let mut resize=None; crate::compat_worker::INWorker::new(move |ins:Instruction|{ match ins{