diff options
| author | 2020-06-30 04:00:23 -0300 | |
|---|---|---|
| committer | 2020-07-13 01:01:08 -0300 | |
| commit | f29fede49c647ce336de2fb4f48aba25f968a882 (patch) | |
| tree | 221f82144265a6587440ee801b5d4662f1d49a27 /src/video_core/morton.cpp | |
| parent | video_core: Implement R8_SNORM render target (diff) | |
| download | yuzu-f29fede49c647ce336de2fb4f48aba25f968a882.tar.gz yuzu-f29fede49c647ce336de2fb4f48aba25f968a882.tar.xz yuzu-f29fede49c647ce336de2fb4f48aba25f968a882.zip | |
video_core: Implement R8_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 9b569afc8..790360d4d 100644 --- a/src/video_core/morton.cpp +++ b/src/video_core/morton.cpp | |||
| @@ -49,6 +49,7 @@ static constexpr ConversionArray morton_to_linear_fns = { | |||
| 49 | MortonCopy<true, PixelFormat::A1B5G5R5U>, | 49 | MortonCopy<true, PixelFormat::A1B5G5R5U>, |
| 50 | MortonCopy<true, PixelFormat::R8U>, | 50 | MortonCopy<true, PixelFormat::R8U>, |
| 51 | MortonCopy<true, PixelFormat::R8S>, | 51 | MortonCopy<true, PixelFormat::R8S>, |
| 52 | MortonCopy<true, PixelFormat::R8I>, | ||
| 52 | MortonCopy<true, PixelFormat::R8UI>, | 53 | MortonCopy<true, PixelFormat::R8UI>, |
| 53 | MortonCopy<true, PixelFormat::RGBA16F>, | 54 | MortonCopy<true, PixelFormat::RGBA16F>, |
| 54 | MortonCopy<true, PixelFormat::RGBA16U>, | 55 | MortonCopy<true, PixelFormat::RGBA16U>, |
| @@ -133,6 +134,7 @@ static constexpr ConversionArray linear_to_morton_fns = { | |||
| 133 | MortonCopy<false, PixelFormat::A1B5G5R5U>, | 134 | MortonCopy<false, PixelFormat::A1B5G5R5U>, |
| 134 | MortonCopy<false, PixelFormat::R8U>, | 135 | MortonCopy<false, PixelFormat::R8U>, |
| 135 | MortonCopy<false, PixelFormat::R8S>, | 136 | MortonCopy<false, PixelFormat::R8S>, |
| 137 | MortonCopy<false, PixelFormat::R8I>, | ||
| 136 | MortonCopy<false, PixelFormat::R8UI>, | 138 | MortonCopy<false, PixelFormat::R8UI>, |
| 137 | MortonCopy<false, PixelFormat::RGBA16F>, | 139 | MortonCopy<false, PixelFormat::RGBA16F>, |
| 138 | MortonCopy<false, PixelFormat::RGBA16S>, | 140 | MortonCopy<false, PixelFormat::RGBA16S>, |