summaryrefslogtreecommitdiff
path: root/src/video_core/morton.cpp
diff options
context:
space:
mode:
authorGravatar ReinUsesLisp2020-06-30 04:38:29 -0300
committerGravatar ReinUsesLisp2020-07-13 01:01:09 -0300
commit95c0f5afe580943fc58d8787aeb27623daacead5 (patch)
treebefe4d5bc15e2db36badc22d843b42eb8fd3df06 /src/video_core/morton.cpp
parentvideo_core: Implement RGBA8_SINT render target (diff)
downloadyuzu-95c0f5afe580943fc58d8787aeb27623daacead5.tar.gz
yuzu-95c0f5afe580943fc58d8787aeb27623daacead5.tar.xz
yuzu-95c0f5afe580943fc58d8787aeb27623daacead5.zip
video_core: Implement RGBA16_SINT render target
Diffstat (limited to 'src/video_core/morton.cpp')
-rw-r--r--src/video_core/morton.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/video_core/morton.cpp b/src/video_core/morton.cpp
index 452e1f01e..c7c8f2238 100644
--- a/src/video_core/morton.cpp
+++ b/src/video_core/morton.cpp
@@ -55,6 +55,7 @@ static constexpr ConversionArray morton_to_linear_fns = {
55 MortonCopy<true, PixelFormat::RGBA16F>, 55 MortonCopy<true, PixelFormat::RGBA16F>,
56 MortonCopy<true, PixelFormat::RGBA16U>, 56 MortonCopy<true, PixelFormat::RGBA16U>,
57 MortonCopy<true, PixelFormat::RGBA16S>, 57 MortonCopy<true, PixelFormat::RGBA16S>,
58 MortonCopy<true, PixelFormat::RGBA16I>,
58 MortonCopy<true, PixelFormat::RGBA16UI>, 59 MortonCopy<true, PixelFormat::RGBA16UI>,
59 MortonCopy<true, PixelFormat::R11FG11FB10F>, 60 MortonCopy<true, PixelFormat::R11FG11FB10F>,
60 MortonCopy<true, PixelFormat::RGBA32UI>, 61 MortonCopy<true, PixelFormat::RGBA32UI>,
@@ -142,6 +143,7 @@ static constexpr ConversionArray linear_to_morton_fns = {
142 MortonCopy<false, PixelFormat::R8UI>, 143 MortonCopy<false, PixelFormat::R8UI>,
143 MortonCopy<false, PixelFormat::RGBA16F>, 144 MortonCopy<false, PixelFormat::RGBA16F>,
144 MortonCopy<false, PixelFormat::RGBA16S>, 145 MortonCopy<false, PixelFormat::RGBA16S>,
146 MortonCopy<false, PixelFormat::RGBA16I>,
145 MortonCopy<false, PixelFormat::RGBA16U>, 147 MortonCopy<false, PixelFormat::RGBA16U>,
146 MortonCopy<false, PixelFormat::RGBA16UI>, 148 MortonCopy<false, PixelFormat::RGBA16UI>,
147 MortonCopy<false, PixelFormat::R11FG11FB10F>, 149 MortonCopy<false, PixelFormat::R11FG11FB10F>,