mirror of
https://github.com/hannobraun/Fornjot
synced 2025-05-04 18:08:26 +00:00
Update name of variable
This commit is contained in:
parent
05d7f90987
commit
12adfa68f6
@ -90,7 +90,7 @@ impl Renderer {
|
||||
pub fn render(&mut self, operations: &OperationView) -> anyhow::Result<()> {
|
||||
let selected_operation = operations.selected();
|
||||
|
||||
let triangles = Geometry::new(&self.device, selected_operation);
|
||||
let geometry = Geometry::new(&self.device, selected_operation);
|
||||
|
||||
let mut encoder = self
|
||||
.device
|
||||
@ -128,7 +128,7 @@ impl Renderer {
|
||||
occlusion_query_set: None,
|
||||
});
|
||||
|
||||
self.pipeline.draw(&mut render_pass, &triangles);
|
||||
self.pipeline.draw(&mut render_pass, &geometry);
|
||||
self.text_renderer.render(
|
||||
operations,
|
||||
&self.device,
|
||||
|
Loading…
Reference in New Issue
Block a user