graphics: drop model_buf after upload

This commit is contained in:
Quaternions 2024-08-20 14:24:12 -07:00
parent 410f8d390b
commit 9508382998

View File

@ -26,7 +26,6 @@ impl Indices{
}
struct GraphicsModel{
indices:Indices,
model_buf:wgpu::Buffer,
vertex_buf:wgpu::Buffer,
bind_group:wgpu::BindGroup,
instance_count:u32,
@ -501,7 +500,6 @@ impl GraphicsState{
model_graphics::Indices::U16(indices)=>Indices::new(device,indices,wgpu::IndexFormat::Uint16),
},
bind_group,
model_buf,
});
}
}