mirror of
https://github.com/hannobraun/Fornjot
synced 2025-05-06 02:48:27 +00:00
Update name of variable
This commit is contained in:
parent
72c035a842
commit
dc92444bb3
@ -46,7 +46,7 @@ impl Renderer {
|
|||||||
.ok_or_else(|| anyhow!("Failed to get default surface config"))?;
|
.ok_or_else(|| anyhow!("Failed to get default surface config"))?;
|
||||||
surface.configure(&device, &surface_config);
|
surface.configure(&device, &surface_config);
|
||||||
|
|
||||||
let pipelines = Pipeline::new(&device, &surface_config);
|
let pipeline = Pipeline::new(&device, &surface_config);
|
||||||
|
|
||||||
let depth_view = {
|
let depth_view = {
|
||||||
let depth_texture =
|
let depth_texture =
|
||||||
@ -81,7 +81,7 @@ impl Renderer {
|
|||||||
device,
|
device,
|
||||||
queue,
|
queue,
|
||||||
surface_config,
|
surface_config,
|
||||||
pipeline: pipelines,
|
pipeline,
|
||||||
depth_view,
|
depth_view,
|
||||||
text_renderer,
|
text_renderer,
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user