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 c7c8f2238..18bcb60b0 100644 --- a/src/video_core/morton.cpp +++ b/src/video_core/morton.cpp | |||
| @@ -71,6 +71,7 @@ static constexpr ConversionArray morton_to_linear_fns = { | |||
| 71 | MortonCopy<true, PixelFormat::ASTC_2D_4X4>, | 71 | MortonCopy<true, PixelFormat::ASTC_2D_4X4>, |
| 72 | MortonCopy<true, PixelFormat::BGRA8>, | 72 | MortonCopy<true, PixelFormat::BGRA8>, |
| 73 | MortonCopy<true, PixelFormat::RGBA32F>, | 73 | MortonCopy<true, PixelFormat::RGBA32F>, |
| 74 | MortonCopy<true, PixelFormat::RGBA32I>, | ||
| 74 | MortonCopy<true, PixelFormat::RG32F>, | 75 | MortonCopy<true, PixelFormat::RG32F>, |
| 75 | MortonCopy<true, PixelFormat::RG32I>, | 76 | MortonCopy<true, PixelFormat::RG32I>, |
| 76 | MortonCopy<true, PixelFormat::R32F>, | 77 | MortonCopy<true, PixelFormat::R32F>, |
| @@ -161,6 +162,7 @@ static constexpr ConversionArray linear_to_morton_fns = { | |||
| 161 | nullptr, | 162 | nullptr, |
| 162 | MortonCopy<false, PixelFormat::BGRA8>, | 163 | MortonCopy<false, PixelFormat::BGRA8>, |
| 163 | MortonCopy<false, PixelFormat::RGBA32F>, | 164 | MortonCopy<false, PixelFormat::RGBA32F>, |
| 165 | MortonCopy<false, PixelFormat::RGBA32I>, | ||
| 164 | MortonCopy<false, PixelFormat::RG32F>, | 166 | MortonCopy<false, PixelFormat::RG32F>, |
| 165 | MortonCopy<false, PixelFormat::RG32I>, | 167 | MortonCopy<false, PixelFormat::RG32I>, |
| 166 | MortonCopy<false, PixelFormat::R32F>, | 168 | MortonCopy<false, PixelFormat::R32F>, |