mirror of
https://github.com/hannobraun/Fornjot
synced 2025-05-05 10:28:27 +00:00
Update name of function parameter
This commit is contained in:
parent
0c4f54934d
commit
612109a895
@ -90,7 +90,7 @@ impl Renderer {
|
||||
pub fn render(
|
||||
&mut self,
|
||||
selected_operation: &impl Operation,
|
||||
_last_operation: &impl Operation,
|
||||
last_operation: &impl Operation,
|
||||
) -> anyhow::Result<()> {
|
||||
let vertices = Geometry::vertices(&self.device, selected_operation);
|
||||
let triangles = Geometry::triangles(&self.device, selected_operation);
|
||||
@ -138,7 +138,7 @@ impl Renderer {
|
||||
&self.queue,
|
||||
&self.surface_config,
|
||||
selected_operation,
|
||||
_last_operation,
|
||||
last_operation,
|
||||
&mut render_pass,
|
||||
)?;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user