Remove unused import and variable

This commit is contained in:
Jarrod Doyle 2023-09-08 16:02:26 +01:00
parent a5ec013001
commit 13fad676ad
Signed by: Jayrude
GPG Key ID: 38B57B16E7C0ADF7
1 changed files with 1 additions and 6 deletions

View File

@ -1,9 +1,6 @@
use std::collections::HashSet;
use crate::{
gfx::{self},
math,
};
use crate::{gfx, math};
#[repr(C)]
#[derive(Debug, Default, Copy, Clone, bytemuck::Pod, bytemuck::Zeroable)]
@ -73,8 +70,6 @@ impl BrickmapManager {
max_requested_brickmaps: u32,
max_uploaded_brickmaps: u32,
) -> Self {
let device = &context.device;
let state_uniform = WorldState {
brickgrid_dims: [brickgrid_dims.x, brickgrid_dims.y, brickgrid_dims.z],
..Default::default()