summaryrefslogtreecommitdiffstats
path: root/src/video_core/morton.cpp
diff options
context:
space:
mode:
authorFearlessTobi <thm.frey@gmail.com>2019-09-22 01:40:46 +0200
committerFearlessTobi <thm.frey@gmail.com>2019-09-22 02:16:44 +0200
commit55d272efe66a30307567db10f32c623364f58848 (patch)
tree516d8619fd8dbe11fea931e1016260097c710f74 /src/video_core/morton.cpp
parentUpdate README.md (#2871) (diff)
downloadyuzu-55d272efe66a30307567db10f32c623364f58848.tar
yuzu-55d272efe66a30307567db10f32c623364f58848.tar.gz
yuzu-55d272efe66a30307567db10f32c623364f58848.tar.bz2
yuzu-55d272efe66a30307567db10f32c623364f58848.tar.lz
yuzu-55d272efe66a30307567db10f32c623364f58848.tar.xz
yuzu-55d272efe66a30307567db10f32c623364f58848.tar.zst
yuzu-55d272efe66a30307567db10f32c623364f58848.zip
Diffstat (limited to '')
-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 084f85e67..ab71870ab 100644
--- a/src/video_core/morton.cpp
+++ b/src/video_core/morton.cpp
@@ -83,6 +83,7 @@ static constexpr ConversionArray morton_to_linear_fns = {
MortonCopy<true, PixelFormat::RG8U>,
MortonCopy<true, PixelFormat::RG8S>,
MortonCopy<true, PixelFormat::RG32UI>,
+ MortonCopy<true, PixelFormat::RGBX16F>,
MortonCopy<true, PixelFormat::R32UI>,
MortonCopy<true, PixelFormat::ASTC_2D_8X8>,
MortonCopy<true, PixelFormat::ASTC_2D_8X5>,
@@ -151,6 +152,7 @@ static constexpr ConversionArray linear_to_morton_fns = {
MortonCopy<false, PixelFormat::RG8U>,
MortonCopy<false, PixelFormat::RG8S>,
MortonCopy<false, PixelFormat::RG32UI>,
+ MortonCopy<false, PixelFormat::RGBX16F>,
MortonCopy<false, PixelFormat::R32UI>,
nullptr,
nullptr,