From 480850ffe7106a23f23946ad9ea46b800fa60168 Mon Sep 17 00:00:00 2001 From: ReinUsesLisp Date: Tue, 30 Jun 2020 17:32:36 -0300 Subject: video_core: Fix B5G6R5_UNORM render target format --- src/video_core/surface.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/video_core/surface.h') diff --git a/src/video_core/surface.h b/src/video_core/surface.h index aec6b1734..9510db2c8 100644 --- a/src/video_core/surface.h +++ b/src/video_core/surface.h @@ -20,6 +20,7 @@ enum class PixelFormat { ABGR8I, ABGR8UI, B5G6R5U, + B5G5R5A1U, A2B10G10R10U, A2B10G10R10UI, A1B5G5R5U, @@ -143,6 +144,7 @@ constexpr std::array compression_factor_shift_table = {{ 0, // ABGR8I 0, // ABGR8UI 0, // B5G6R5U + 0, // B5G5R5A1U 0, // A2B10G10R10U 0, // A2B10G10R10UI 0, // A1B5G5R5U @@ -250,6 +252,7 @@ constexpr std::array block_width_table = {{ 1, // ABGR8I 1, // ABGR8UI 1, // B5G6R5U + 1, // B5G5R5A1U 1, // A2B10G10R10U 1, // A2B10G10R10UI 1, // A1B5G5R5U @@ -349,6 +352,7 @@ constexpr std::array block_height_table = {{ 1, // ABGR8I 1, // ABGR8UI 1, // B5G6R5U + 1, // B5G5R5A1U 1, // A2B10G10R10U 1, // A2B10G10R10UI 1, // A1B5G5R5U @@ -448,6 +452,7 @@ constexpr std::array bpp_table = {{ 32, // ABGR8I 32, // ABGR8UI 16, // B5G6R5U + 16, // B5G5R5A1U 32, // A2B10G10R10U 32, // A2B10G10R10UI 16, // A1B5G5R5U -- cgit v1.2.3