From 0d8d1e800974d550f7fc5d1e67c43589be3a6331 Mon Sep 17 00:00:00 2001 From: Quaternions Date: Thu, 7 Sep 2023 16:15:09 -0700 Subject: [PATCH] unnecessary type cast to same type --- src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index d9bb947..a8bcdaa 100644 --- a/src/main.rs +++ b/src/main.rs @@ -178,7 +178,7 @@ fn add_obj(device:&wgpu::Device,modeldatas:& mut Vec,source:&[u8]){ for &index in &[0, end_index - 1, end_index] { let vert = poly.0[index]; if let Some(&i)=vertex_index.get(&vert){ - indices.push(i as u16); + indices.push(i); }else{ let i=vertices.len() as u16; vertices.push(Vertex { @@ -309,7 +309,7 @@ impl strafe_client::framework::Example for Skybox { let vert = face*4+index; let unique_id=(vert * 1<<0) + (index * 1<<8) + (face * 1<<16); if let Some(&i)=vertex_index.get(&unique_id){ - indices.push(i as u16); + indices.push(i); }else{ let i=vertices.len() as u16; vertices.push(Vertex {