diff options
| author | 2020-02-15 02:54:24 -0300 | |
|---|---|---|
| committer | 2020-02-15 16:26:50 -0300 | |
| commit | 14c2a4a2ec30256e9299017e532a24e6600d7b95 (patch) | |
| tree | ff310888bf33082e04bee0868e270c11a9f9aaf8 /src/video_core/morton.cpp | |
| parent | Merge pull request #3401 from FernandoS27/synchronization (diff) | |
| download | yuzu-14c2a4a2ec30256e9299017e532a24e6600d7b95.tar.gz yuzu-14c2a4a2ec30256e9299017e532a24e6600d7b95.tar.xz yuzu-14c2a4a2ec30256e9299017e532a24e6600d7b95.zip | |
texture: Implement R32I
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 2f2fe6859..f2c83266e 100644 --- a/src/video_core/morton.cpp +++ b/src/video_core/morton.cpp | |||
| @@ -85,6 +85,7 @@ static constexpr ConversionArray morton_to_linear_fns = { | |||
| 85 | MortonCopy<true, PixelFormat::RG32UI>, | 85 | MortonCopy<true, PixelFormat::RG32UI>, |
| 86 | MortonCopy<true, PixelFormat::RGBX16F>, | 86 | MortonCopy<true, PixelFormat::RGBX16F>, |
| 87 | MortonCopy<true, PixelFormat::R32UI>, | 87 | MortonCopy<true, PixelFormat::R32UI>, |
| 88 | MortonCopy<true, PixelFormat::R32I>, | ||
| 88 | MortonCopy<true, PixelFormat::ASTC_2D_8X8>, | 89 | MortonCopy<true, PixelFormat::ASTC_2D_8X8>, |
| 89 | MortonCopy<true, PixelFormat::ASTC_2D_8X5>, | 90 | MortonCopy<true, PixelFormat::ASTC_2D_8X5>, |
| 90 | MortonCopy<true, PixelFormat::ASTC_2D_5X4>, | 91 | MortonCopy<true, PixelFormat::ASTC_2D_5X4>, |
| @@ -166,6 +167,7 @@ static constexpr ConversionArray linear_to_morton_fns = { | |||
| 166 | MortonCopy<false, PixelFormat::RG32UI>, | 167 | MortonCopy<false, PixelFormat::RG32UI>, |
| 167 | MortonCopy<false, PixelFormat::RGBX16F>, | 168 | MortonCopy<false, PixelFormat::RGBX16F>, |
| 168 | MortonCopy<false, PixelFormat::R32UI>, | 169 | MortonCopy<false, PixelFormat::R32UI>, |
| 170 | MortonCopy<false, PixelFormat::R32I>, | ||
| 169 | nullptr, | 171 | nullptr, |
| 170 | nullptr, | 172 | nullptr, |
| 171 | nullptr, | 173 | nullptr, |