diff options
| author | 2020-04-30 12:17:02 -0400 | |
|---|---|---|
| committer | 2020-04-30 13:19:36 -0400 | |
| commit | 7909860d16118f3db5006ccd379c1dae27eb5a1b (patch) | |
| tree | 5506721386d37c2d3ea4425b155128b4bdc475e5 /src/video_core/morton.cpp | |
| parent | Merge pull request #3826 from MerryMage/update-dynarmic (diff) | |
| download | yuzu-7909860d16118f3db5006ccd379c1dae27eb5a1b.tar.gz yuzu-7909860d16118f3db5006ccd379c1dae27eb5a1b.tar.xz yuzu-7909860d16118f3db5006ccd379c1dae27eb5a1b.zip | |
texture: Implement R8G8UI
- Used by The Walking Dead: The Final Season
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 6d522c318..836b25c1d 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::RGBA8_SRGB>, | 83 | MortonCopy<true, PixelFormat::RGBA8_SRGB>, |
| 84 | MortonCopy<true, PixelFormat::RG8U>, | 84 | MortonCopy<true, PixelFormat::RG8U>, |
| 85 | MortonCopy<true, PixelFormat::RG8S>, | 85 | MortonCopy<true, PixelFormat::RG8S>, |
| 86 | MortonCopy<true, PixelFormat::RG8UI>, | ||
| 86 | MortonCopy<true, PixelFormat::RG32UI>, | 87 | MortonCopy<true, PixelFormat::RG32UI>, |
| 87 | MortonCopy<true, PixelFormat::RGBX16F>, | 88 | MortonCopy<true, PixelFormat::RGBX16F>, |
| 88 | MortonCopy<true, PixelFormat::R32UI>, | 89 | MortonCopy<true, PixelFormat::R32UI>, |
| @@ -166,6 +167,7 @@ static constexpr ConversionArray linear_to_morton_fns = { | |||
| 166 | MortonCopy<false, PixelFormat::RGBA8_SRGB>, | 167 | MortonCopy<false, PixelFormat::RGBA8_SRGB>, |
| 167 | MortonCopy<false, PixelFormat::RG8U>, | 168 | MortonCopy<false, PixelFormat::RG8U>, |
| 168 | MortonCopy<false, PixelFormat::RG8S>, | 169 | MortonCopy<false, PixelFormat::RG8S>, |
| 170 | MortonCopy<false, PixelFormat::RG8UI>, | ||
| 169 | MortonCopy<false, PixelFormat::RG32UI>, | 171 | MortonCopy<false, PixelFormat::RG32UI>, |
| 170 | MortonCopy<false, PixelFormat::RGBX16F>, | 172 | MortonCopy<false, PixelFormat::RGBX16F>, |
| 171 | MortonCopy<false, PixelFormat::R32UI>, | 173 | MortonCopy<false, PixelFormat::R32UI>, |