1
0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2025-04-04 08:11:06 +00:00

vk_blit_screen: Add missing format bgra8

This commit is contained in:
Lody 2022-02-24 19:25:39 +08:00
parent 2f45e999d8
commit 6978093404

@ -100,6 +100,8 @@ VkFormat GetFormat(const Tegra::FramebufferConfig& framebuffer) {
return VK_FORMAT_A8B8G8R8_UNORM_PACK32;
case Tegra::FramebufferConfig::PixelFormat::RGB565_UNORM:
return VK_FORMAT_R5G6B5_UNORM_PACK16;
case Tegra::FramebufferConfig::PixelFormat::B8G8R8A8_UNORM:
return VK_FORMAT_B8G8R8A8_UNORM;
default:
UNIMPLEMENTED_MSG("Unknown framebuffer pixel format: {}",
static_cast<u32>(framebuffer.pixel_format));