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 9b569afc8..790360d4d 100644 --- a/src/video_core/morton.cpp +++ b/src/video_core/morton.cpp | |||
| @@ -49,6 +49,7 @@ static constexpr ConversionArray morton_to_linear_fns = { | |||
| 49 | MortonCopy<true, PixelFormat::A1B5G5R5U>, | 49 | MortonCopy<true, PixelFormat::A1B5G5R5U>, |
| 50 | MortonCopy<true, PixelFormat::R8U>, | 50 | MortonCopy<true, PixelFormat::R8U>, |
| 51 | MortonCopy<true, PixelFormat::R8S>, | 51 | MortonCopy<true, PixelFormat::R8S>, |
| 52 | MortonCopy<true, PixelFormat::R8I>, | ||
| 52 | MortonCopy<true, PixelFormat::R8UI>, | 53 | MortonCopy<true, PixelFormat::R8UI>, |
| 53 | MortonCopy<true, PixelFormat::RGBA16F>, | 54 | MortonCopy<true, PixelFormat::RGBA16F>, |
| 54 | MortonCopy<true, PixelFormat::RGBA16U>, | 55 | MortonCopy<true, PixelFormat::RGBA16U>, |
| @@ -133,6 +134,7 @@ static constexpr ConversionArray linear_to_morton_fns = { | |||
| 133 | MortonCopy<false, PixelFormat::A1B5G5R5U>, | 134 | MortonCopy<false, PixelFormat::A1B5G5R5U>, |
| 134 | MortonCopy<false, PixelFormat::R8U>, | 135 | MortonCopy<false, PixelFormat::R8U>, |
| 135 | MortonCopy<false, PixelFormat::R8S>, | 136 | MortonCopy<false, PixelFormat::R8S>, |
| 137 | MortonCopy<false, PixelFormat::R8I>, | ||
| 136 | MortonCopy<false, PixelFormat::R8UI>, | 138 | MortonCopy<false, PixelFormat::R8UI>, |
| 137 | MortonCopy<false, PixelFormat::RGBA16F>, | 139 | MortonCopy<false, PixelFormat::RGBA16F>, |
| 138 | MortonCopy<false, PixelFormat::RGBA16S>, | 140 | MortonCopy<false, PixelFormat::RGBA16S>, |