mirror of
https://github.com/hannobraun/Fornjot
synced 2025-05-03 17:38:27 +00:00
Remove unused function parameter
This commit is contained in:
parent
18df3cddd7
commit
a5f2fa8a87
@ -8,7 +8,6 @@ pub struct Pipeline {
|
||||
impl Pipeline {
|
||||
pub fn new(
|
||||
device: &wgpu::Device,
|
||||
_: &wgpu::SurfaceConfiguration,
|
||||
shaders: &Shaders,
|
||||
uniforms: &wgpu::Buffer,
|
||||
) -> Self {
|
||||
|
@ -60,8 +60,7 @@ impl Renderer {
|
||||
});
|
||||
|
||||
let shaders = Shaders::triangles(&device, &config);
|
||||
let pipeline =
|
||||
Pipeline::new(&device, &config, &shaders, &transform_buffer);
|
||||
let pipeline = Pipeline::new(&device, &shaders, &transform_buffer);
|
||||
|
||||
let depth_view = {
|
||||
let depth_texture =
|
||||
|
Loading…
Reference in New Issue
Block a user