diff options
| author | 2020-06-30 04:13:46 -0300 | |
|---|---|---|
| committer | 2020-07-13 01:01:09 -0300 | |
| commit | e849d680480e07e430793fd9657a08b676655803 (patch) | |
| tree | 640b2cfed02f0e67750ff4ec4c8fc15e909a099f /src/video_core/morton.cpp | |
| parent | video_core: Implement R8_SINT render target (diff) | |
| download | yuzu-e849d680480e07e430793fd9657a08b676655803.tar.gz yuzu-e849d680480e07e430793fd9657a08b676655803.tar.xz yuzu-e849d680480e07e430793fd9657a08b676655803.zip | |
video_core: Implement RG8_SINT render target and fix RG8_UINT
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 790360d4d..9e50aa11d 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::RGBA8_SRGB>, | 85 | MortonCopy<true, PixelFormat::RGBA8_SRGB>, |
| 86 | MortonCopy<true, PixelFormat::RG8U>, | 86 | MortonCopy<true, PixelFormat::RG8U>, |
| 87 | MortonCopy<true, PixelFormat::RG8S>, | 87 | MortonCopy<true, PixelFormat::RG8S>, |
| 88 | MortonCopy<true, PixelFormat::RG8I>, | ||
| 88 | MortonCopy<true, PixelFormat::RG8UI>, | 89 | MortonCopy<true, PixelFormat::RG8UI>, |
| 89 | MortonCopy<true, PixelFormat::RG32UI>, | 90 | MortonCopy<true, PixelFormat::RG32UI>, |
| 90 | MortonCopy<true, PixelFormat::RGBX16F>, | 91 | MortonCopy<true, PixelFormat::RGBX16F>, |
| @@ -171,6 +172,7 @@ static constexpr ConversionArray linear_to_morton_fns = { | |||
| 171 | MortonCopy<false, PixelFormat::RGBA8_SRGB>, | 172 | MortonCopy<false, PixelFormat::RGBA8_SRGB>, |
| 172 | MortonCopy<false, PixelFormat::RG8U>, | 173 | MortonCopy<false, PixelFormat::RG8U>, |
| 173 | MortonCopy<false, PixelFormat::RG8S>, | 174 | MortonCopy<false, PixelFormat::RG8S>, |
| 175 | MortonCopy<false, PixelFormat::RG8I>, | ||
| 174 | MortonCopy<false, PixelFormat::RG8UI>, | 176 | MortonCopy<false, PixelFormat::RG8UI>, |
| 175 | MortonCopy<false, PixelFormat::RG32UI>, | 177 | MortonCopy<false, PixelFormat::RG32UI>, |
| 176 | MortonCopy<false, PixelFormat::RGBX16F>, | 178 | MortonCopy<false, PixelFormat::RGBX16F>, |