diff options
Diffstat (limited to 'src/video_core/morton.cpp')
| -rw-r--r-- | src/video_core/morton.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/video_core/morton.cpp b/src/video_core/morton.cpp index 889f7caac..7f239566a 100644 --- a/src/video_core/morton.cpp +++ b/src/video_core/morton.cpp | |||
| @@ -46,6 +46,7 @@ static constexpr ConversionArray morton_to_linear_fns = { | |||
| 46 | MortonCopy<true, PixelFormat::ABGR8I>, | 46 | MortonCopy<true, PixelFormat::ABGR8I>, |
| 47 | MortonCopy<true, PixelFormat::ABGR8UI>, | 47 | MortonCopy<true, PixelFormat::ABGR8UI>, |
| 48 | MortonCopy<true, PixelFormat::B5G6R5U>, | 48 | MortonCopy<true, PixelFormat::B5G6R5U>, |
| 49 | MortonCopy<true, PixelFormat::B5G5R5A1U>, | ||
| 49 | MortonCopy<true, PixelFormat::A2B10G10R10U>, | 50 | MortonCopy<true, PixelFormat::A2B10G10R10U>, |
| 50 | MortonCopy<true, PixelFormat::A2B10G10R10UI>, | 51 | MortonCopy<true, PixelFormat::A2B10G10R10UI>, |
| 51 | MortonCopy<true, PixelFormat::A1B5G5R5U>, | 52 | MortonCopy<true, PixelFormat::A1B5G5R5U>, |
| @@ -137,6 +138,7 @@ static constexpr ConversionArray linear_to_morton_fns = { | |||
| 137 | MortonCopy<false, PixelFormat::ABGR8I>, | 138 | MortonCopy<false, PixelFormat::ABGR8I>, |
| 138 | MortonCopy<false, PixelFormat::ABGR8UI>, | 139 | MortonCopy<false, PixelFormat::ABGR8UI>, |
| 139 | MortonCopy<false, PixelFormat::B5G6R5U>, | 140 | MortonCopy<false, PixelFormat::B5G6R5U>, |
| 141 | MortonCopy<false, PixelFormat::B5G5R5A1U>, | ||
| 140 | MortonCopy<false, PixelFormat::A2B10G10R10U>, | 142 | MortonCopy<false, PixelFormat::A2B10G10R10U>, |
| 141 | MortonCopy<false, PixelFormat::A2B10G10R10UI>, | 143 | MortonCopy<false, PixelFormat::A2B10G10R10UI>, |
| 142 | MortonCopy<false, PixelFormat::A1B5G5R5U>, | 144 | MortonCopy<false, PixelFormat::A1B5G5R5U>, |