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(
|
pub fn render(
|
||||||
&mut self,
|
&mut self,
|
||||||
_operations: &OpsLog,
|
operations: &OpsLog,
|
||||||
device: &wgpu::Device,
|
device: &wgpu::Device,
|
||||||
queue: &wgpu::Queue,
|
queue: &wgpu::Queue,
|
||||||
surface_config: &wgpu::SurfaceConfiguration,
|
surface_config: &wgpu::SurfaceConfiguration,
|
||||||
@ -70,7 +70,7 @@ impl TextRenderer {
|
|||||||
) -> anyhow::Result<()> {
|
) -> anyhow::Result<()> {
|
||||||
let mut buffers = Vec::new();
|
let mut buffers = Vec::new();
|
||||||
|
|
||||||
for op in &_operations.operations {
|
for op in &operations.operations {
|
||||||
let mut buffer = glyphon::Buffer::new(
|
let mut buffer = glyphon::Buffer::new(
|
||||||
&mut self.font_system,
|
&mut self.font_system,
|
||||||
glyphon::Metrics {
|
glyphon::Metrics {
|
||||||
|
Loading…
Reference in New Issue
Block a user