diff options
Diffstat (limited to 'client/src')
-rw-r--r-- | client/src/scene_prepare.rs | 6 |
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 { |