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 084f85e67..ab71870ab 100644 --- a/src/video_core/morton.cpp +++ b/src/video_core/morton.cpp | |||
| @@ -83,6 +83,7 @@ static constexpr ConversionArray morton_to_linear_fns = { | |||
| 83 | MortonCopy<true, PixelFormat::RG8U>, | 83 | MortonCopy<true, PixelFormat::RG8U>, |
| 84 | MortonCopy<true, PixelFormat::RG8S>, | 84 | MortonCopy<true, PixelFormat::RG8S>, |
| 85 | MortonCopy<true, PixelFormat::RG32UI>, | 85 | MortonCopy<true, PixelFormat::RG32UI>, |
| 86 | MortonCopy<true, PixelFormat::RGBX16F>, | ||
| 86 | MortonCopy<true, PixelFormat::R32UI>, | 87 | MortonCopy<true, PixelFormat::R32UI>, |
| 87 | MortonCopy<true, PixelFormat::ASTC_2D_8X8>, | 88 | MortonCopy<true, PixelFormat::ASTC_2D_8X8>, |
| 88 | MortonCopy<true, PixelFormat::ASTC_2D_8X5>, | 89 | MortonCopy<true, PixelFormat::ASTC_2D_8X5>, |
| @@ -151,6 +152,7 @@ static constexpr ConversionArray linear_to_morton_fns = { | |||
| 151 | MortonCopy<false, PixelFormat::RG8U>, | 152 | MortonCopy<false, PixelFormat::RG8U>, |
| 152 | MortonCopy<false, PixelFormat::RG8S>, | 153 | MortonCopy<false, PixelFormat::RG8S>, |
| 153 | MortonCopy<false, PixelFormat::RG32UI>, | 154 | MortonCopy<false, PixelFormat::RG32UI>, |
| 155 | MortonCopy<false, PixelFormat::RGBX16F>, | ||
| 154 | MortonCopy<false, PixelFormat::R32UI>, | 156 | MortonCopy<false, PixelFormat::R32UI>, |
| 155 | nullptr, | 157 | nullptr, |
| 156 | nullptr, | 158 | nullptr, |