some cleanup from clippy

This commit is contained in:
Florian RICHER 2025-05-30 22:21:34 +02:00
parent b1458785e5
commit 1568223b9d
Signed by: florian.richer
GPG key ID: C73D37CBED7BFC77
11 changed files with 30 additions and 38 deletions
src/game/assets

View file

@ -31,7 +31,7 @@ use vulkano::{
};
use crate::core::render::{
primitives::{mvp::MVP, transform::TransformRaw, vertex::Vertex3D},
primitives::{mvp::Mvp, transform::TransformRaw, vertex::Vertex3D},
texture::Texture,
};
@ -214,7 +214,7 @@ impl Square {
&self,
command_buffer: &mut AutoCommandBufferBuilder<PrimaryAutoCommandBuffer>,
descriptor_set_allocator: &Arc<StandardDescriptorSetAllocator>,
mvp_uniform: &Subbuffer<[MVP]>,
mvp_uniform: &Subbuffer<[Mvp]>,
transform_uniform: &Subbuffer<[TransformRaw]>,
texture: &Texture,
) -> Result<(), Box<dyn Error>> {