This commit is contained in:
Florian RICHER 2025-06-08 18:48:12 +02:00
parent a32cf6c747
commit 90a5b5d117
Signed by: florian.richer
GPG key ID: C73D37CBED7BFC77

View file

@ -53,14 +53,14 @@ impl TextureLoader {
.as_ref() .as_ref()
.map(|queue| { .map(|queue| {
tracing::trace!( tracing::trace!(
"Selected transfer queue for texture loading with family index: {:?}", "Select transfer queue for texture loading with family index: {:?}",
queue.queue_family_index() queue.queue_family_index()
); );
queue.clone() queue.clone()
}) })
.or_else(|| { .or_else(|| {
tracing::trace!( tracing::trace!(
"Selected graphics queue for texture loading with family index: {:?}", "Select graphics queue for texture loading with family index: {:?}",
app_context.graphics_queue.queue_family_index() app_context.graphics_queue.queue_family_index()
); );
Some(app_context.graphics_queue.clone()) Some(app_context.graphics_queue.clone())