summaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2025-01-07 00:56:35 +0100
committermetamuffin <metamuffin@disroot.org>2025-01-07 00:56:35 +0100
commit31ae23b7eb8cd0b688be07ae6cb4b5a96ee02a68 (patch)
tree4684c2716b8ec2963b4ad97eb3adc2162c9bc499 /client
parent32d493db1d897a61fd3e1170136fa3e812704837 (diff)
downloadweareserver-31ae23b7eb8cd0b688be07ae6cb4b5a96ee02a68.tar
weareserver-31ae23b7eb8cd0b688be07ae6cb4b5a96ee02a68.tar.bz2
weareserver-31ae23b7eb8cd0b688be07ae6cb4b5a96ee02a68.tar.zst
a
Diffstat (limited to 'client')
-rw-r--r--client/src/scene_prepare.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/client/src/scene_prepare.rs b/client/src/scene_prepare.rs
index 7b81c93..85db160 100644
--- a/client/src/scene_prepare.rs
+++ b/client/src/scene_prepare.rs
@@ -138,7 +138,7 @@ impl ScenePreparer {
self.vertex_buffers_needed.insert(resource);
};
}
- Attribute::Texture(_resource) => todo!(),
+ Attribute::Texture(_resource, _ch) => todo!(),
}
}
let mut normal = Vec::new();
@@ -152,7 +152,7 @@ impl ScenePreparer {
self.vertex_buffers_needed.insert(resource);
};
}
- Attribute::Texture(_resource) => todo!(),
+ Attribute::Texture(_resource, _ch) => todo!(),
}
}
let mut texcoord = Vec::new();
@@ -166,7 +166,7 @@ impl ScenePreparer {
self.vertex_buffers_needed.insert(resource);
};
}
- Attribute::Texture(_resource) => todo!(),
+ Attribute::Texture(_resource, _ch) => todo!(),
}
}
if texcoord.len() == 2 && normal.len() == 3 && position.len() == 3 {