summaryrefslogtreecommitdiff
path: root/client/src/render/scene/textures.rs
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2025-01-26 15:10:37 +0100
committermetamuffin <metamuffin@disroot.org>2025-01-26 15:10:37 +0100
commit66930534a0647e2613360658a6a99eed945e2f0f (patch)
tree31a769910ef924a11206f1024b4004f74b1e396f /client/src/render/scene/textures.rs
parent0163f8486ceca8bd6897c1074f6846f36827d040 (diff)
downloadweareserver-66930534a0647e2613360658a6a99eed945e2f0f.tar
weareserver-66930534a0647e2613360658a6a99eed945e2f0f.tar.bz2
weareserver-66930534a0647e2613360658a6a99eed945e2f0f.tar.zst
move files around, graphics config, msaa
Diffstat (limited to 'client/src/render/scene/textures.rs')
-rw-r--r--client/src/render/scene/textures.rs2
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,