Update name of module

This commit is contained in:
Hanno Braun 2025-01-13 20:12:51 +01:00
parent 4a6e6298f8
commit 19a626ffdf
3 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
mod pipeline;
mod pipelines;
mod uniforms;
pub use self::pipeline::Pipeline;

View File

@ -5,7 +5,7 @@ use wgpu::util::DeviceExt;
use crate::render::{geometry::Geometry, vertex::Vertex};
use super::pipelines::Uniforms;
use super::uniforms::Uniforms;
pub struct Pipeline {
render_pipeline: wgpu::RenderPipeline,