diff options
Diffstat (limited to 'client/src/render/scene/textures.rs')
-rw-r--r-- | client/src/render/scene/textures.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/render/scene/textures.rs b/client/src/render/scene/textures.rs index 463e8f1..f85f21f 100644 --- a/client/src/render/scene/textures.rs +++ b/client/src/render/scene/textures.rs @@ -32,7 +32,7 @@ pub struct MipGenerationPipeline { } impl MipGenerationPipeline { pub fn load(device: &Device, format: TextureFormat) -> Self { - let shader = device.create_shader_module(include_wgsl!("../../shaders/texture_copy.wgsl")); + let shader = device.create_shader_module(include_wgsl!("../shaders/texture_copy.wgsl")); let pipeline = device.create_render_pipeline(&wgpu::RenderPipelineDescriptor { label: Some("mip generator"), layout: None, |