diff options
| author | 2020-06-30 04:46:07 -0300 | |
|---|---|---|
| committer | 2020-07-13 01:01:09 -0300 | |
| commit | 9338599d7246a954a1ce25a7e97d80bc1062e1d9 (patch) | |
| tree | a73b07e4d3fac447c3bafe41e493366fde6f023b /src/video_core/morton.cpp | |
| parent | video_core: Implement RGBA16_SINT render target (diff) | |
| download | yuzu-9338599d7246a954a1ce25a7e97d80bc1062e1d9.tar.gz yuzu-9338599d7246a954a1ce25a7e97d80bc1062e1d9.tar.xz yuzu-9338599d7246a954a1ce25a7e97d80bc1062e1d9.zip | |
video_core: Implement RGBA32_SINT render target
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 c7c8f2238..18bcb60b0 100644 --- a/src/video_core/morton.cpp +++ b/src/video_core/morton.cpp | |||
| @@ -71,6 +71,7 @@ static constexpr ConversionArray morton_to_linear_fns = { | |||
| 71 | MortonCopy<true, PixelFormat::ASTC_2D_4X4>, | 71 | MortonCopy<true, PixelFormat::ASTC_2D_4X4>, |
| 72 | MortonCopy<true, PixelFormat::BGRA8>, | 72 | MortonCopy<true, PixelFormat::BGRA8>, |
| 73 | MortonCopy<true, PixelFormat::RGBA32F>, | 73 | MortonCopy<true, PixelFormat::RGBA32F>, |
| 74 | MortonCopy<true, PixelFormat::RGBA32I>, | ||
| 74 | MortonCopy<true, PixelFormat::RG32F>, | 75 | MortonCopy<true, PixelFormat::RG32F>, |
| 75 | MortonCopy<true, PixelFormat::RG32I>, | 76 | MortonCopy<true, PixelFormat::RG32I>, |
| 76 | MortonCopy<true, PixelFormat::R32F>, | 77 | MortonCopy<true, PixelFormat::R32F>, |
| @@ -161,6 +162,7 @@ static constexpr ConversionArray linear_to_morton_fns = { | |||
| 161 | nullptr, | 162 | nullptr, |
| 162 | MortonCopy<false, PixelFormat::BGRA8>, | 163 | MortonCopy<false, PixelFormat::BGRA8>, |
| 163 | MortonCopy<false, PixelFormat::RGBA32F>, | 164 | MortonCopy<false, PixelFormat::RGBA32F>, |
| 165 | MortonCopy<false, PixelFormat::RGBA32I>, | ||
| 164 | MortonCopy<false, PixelFormat::RG32F>, | 166 | MortonCopy<false, PixelFormat::RG32F>, |
| 165 | MortonCopy<false, PixelFormat::RG32I>, | 167 | MortonCopy<false, PixelFormat::RG32I>, |
| 166 | MortonCopy<false, PixelFormat::R32F>, | 168 | MortonCopy<false, PixelFormat::R32F>, |