some cleanup from clippy
Some checks failed
Build legacy Nix package on Ubuntu / build (push) Failing after 9m20s

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

View file

@ -78,7 +78,7 @@ impl Texture {
ImageCreateInfo {
image_type: ImageType::Dim2d,
format: Format::R8G8B8A8_SRGB,
extent: [image_dimensions.0 as u32, image_dimensions.1 as u32, 1],
extent: [image_dimensions.0, image_dimensions.1, 1],
array_layers: 1,
usage: ImageUsage::TRANSFER_DST | ImageUsage::SAMPLED,
..Default::default()