1
0
Fork 0
forked from wry/wry

vulkan: add missing return in error case

This commit is contained in:
Julian Orth 2026-03-23 18:22:17 +01:00
parent 6726d53b47
commit 3659006417

View file

@ -679,6 +679,7 @@ fn complete_async_host_copy(
store(data);
if let Err(e) = res {
data.complete(Err(VulkanError::AsyncCopyToStaging(e)));
return;
}
data.data_copied.set(true);
match tt {