Update liverpool_to_vk.h

This commit is contained in:
Luke Warner 2024-09-24 13:45:42 -04:00
parent beb809b612
commit 9c06852c89

View file

@ -61,6 +61,8 @@ static inline vk::Format PromoteFormatToDepth(vk::Format fmt) {
return vk::Format::eD32Sfloat;
} else if (fmt == vk::Format::eR16Unorm) {
return vk::Format::eD16Unorm;
} else if (fmt == vk::Format::eR8G8B8A8Unorm) {
return fmt;
}
UNREACHABLE();
}