mirror of
https://github.com/hannobraun/Fornjot
synced 2025-01-23 00:26:08 +00:00
Remove redundant function parameter
This commit is contained in:
parent
81bb76cf85
commit
2d354399f8
@ -137,7 +137,6 @@ impl Renderer {
|
|||||||
&self.device,
|
&self.device,
|
||||||
&self.queue,
|
&self.queue,
|
||||||
&self.surface_config,
|
&self.surface_config,
|
||||||
selected_operation,
|
|
||||||
operations,
|
operations,
|
||||||
&mut render_pass,
|
&mut render_pass,
|
||||||
)?;
|
)?;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
use crate::geometry::{Operation, OpsLog};
|
use crate::geometry::OpsLog;
|
||||||
|
|
||||||
pub struct TextRenderer {
|
pub struct TextRenderer {
|
||||||
text_atlas: glyphon::TextAtlas,
|
text_atlas: glyphon::TextAtlas,
|
||||||
@ -65,7 +65,6 @@ impl TextRenderer {
|
|||||||
device: &wgpu::Device,
|
device: &wgpu::Device,
|
||||||
queue: &wgpu::Queue,
|
queue: &wgpu::Queue,
|
||||||
surface_config: &wgpu::SurfaceConfiguration,
|
surface_config: &wgpu::SurfaceConfiguration,
|
||||||
_selected_operation: &dyn Operation,
|
|
||||||
_all_operations: &OpsLog,
|
_all_operations: &OpsLog,
|
||||||
render_pass: &mut wgpu::RenderPass,
|
render_pass: &mut wgpu::RenderPass,
|
||||||
) -> anyhow::Result<()> {
|
) -> anyhow::Result<()> {
|
||||||
|
Loading…
Reference in New Issue
Block a user