mirror of
https://github.com/hannobraun/Fornjot
synced 2025-01-22 16:16:12 +00:00
Update name of function parameter
This commit is contained in:
parent
ab7f435d06
commit
02d1d75668
@ -62,7 +62,7 @@ impl TextRenderer {
|
||||
|
||||
pub fn render(
|
||||
&mut self,
|
||||
_operations: &OpsLog,
|
||||
operations: &OpsLog,
|
||||
device: &wgpu::Device,
|
||||
queue: &wgpu::Queue,
|
||||
surface_config: &wgpu::SurfaceConfiguration,
|
||||
@ -70,7 +70,7 @@ impl TextRenderer {
|
||||
) -> anyhow::Result<()> {
|
||||
let mut buffers = Vec::new();
|
||||
|
||||
for op in &_operations.operations {
|
||||
for op in &operations.operations {
|
||||
let mut buffer = glyphon::Buffer::new(
|
||||
&mut self.font_system,
|
||||
glyphon::Metrics {
|
||||
|
Loading…
Reference in New Issue
Block a user