Update name of module

This commit is contained in:
Hanno Braun 2025-01-13 20:16:48 +01:00
parent 6bd6bd9c19
commit 5e04f66dcf
3 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
mod geometry;
mod pipelines;
mod pipeline;
mod renderer;
mod text;
mod uniforms;

View File

@ -5,7 +5,7 @@ use winit::window::Window;
use crate::view::OperationView;
use super::{geometry::Geometry, pipelines::Pipeline, text::TextRenderer};
use super::{geometry::Geometry, pipeline::Pipeline, text::TextRenderer};
pub struct Renderer {
pub surface: wgpu::Surface<'static>,