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 9e50aa11d..f932df53f 100644 --- a/src/video_core/morton.cpp +++ b/src/video_core/morton.cpp | |||
| @@ -70,6 +70,7 @@ static constexpr ConversionArray morton_to_linear_fns = { | |||
| 70 | MortonCopy<true, PixelFormat::BGRA8>, | 70 | MortonCopy<true, PixelFormat::BGRA8>, |
| 71 | MortonCopy<true, PixelFormat::RGBA32F>, | 71 | MortonCopy<true, PixelFormat::RGBA32F>, |
| 72 | MortonCopy<true, PixelFormat::RG32F>, | 72 | MortonCopy<true, PixelFormat::RG32F>, |
| 73 | MortonCopy<true, PixelFormat::RG32I>, | ||
| 73 | MortonCopy<true, PixelFormat::R32F>, | 74 | MortonCopy<true, PixelFormat::R32F>, |
| 74 | MortonCopy<true, PixelFormat::R16F>, | 75 | MortonCopy<true, PixelFormat::R16F>, |
| 75 | MortonCopy<true, PixelFormat::R16U>, | 76 | MortonCopy<true, PixelFormat::R16U>, |
| @@ -157,6 +158,7 @@ static constexpr ConversionArray linear_to_morton_fns = { | |||
| 157 | MortonCopy<false, PixelFormat::BGRA8>, | 158 | MortonCopy<false, PixelFormat::BGRA8>, |
| 158 | MortonCopy<false, PixelFormat::RGBA32F>, | 159 | MortonCopy<false, PixelFormat::RGBA32F>, |
| 159 | MortonCopy<false, PixelFormat::RG32F>, | 160 | MortonCopy<false, PixelFormat::RG32F>, |
| 161 | MortonCopy<false, PixelFormat::RG32I>, | ||
| 160 | MortonCopy<false, PixelFormat::R32F>, | 162 | MortonCopy<false, PixelFormat::R32F>, |
| 161 | MortonCopy<false, PixelFormat::R16F>, | 163 | MortonCopy<false, PixelFormat::R16F>, |
| 162 | MortonCopy<false, PixelFormat::R16U>, | 164 | MortonCopy<false, PixelFormat::R16U>, |