diff --git a/src/video_core/renderer_vulkan/liverpool_to_vk.h b/src/video_core/renderer_vulkan/liverpool_to_vk.h index a68280e7d..ab7ec843a 100644 --- a/src/video_core/renderer_vulkan/liverpool_to_vk.h +++ b/src/video_core/renderer_vulkan/liverpool_to_vk.h @@ -76,6 +76,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 vk::Format::eR32Uint; } UNREACHABLE(); }