Fix typo
This commit is contained in:
parent
a32cf6c747
commit
90a5b5d117
1 changed files with 2 additions and 2 deletions
|
@ -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())
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue