summaryrefslogtreecommitdiffstats
path: root/src/video_core/surface.cpp
diff options
context:
space:
mode:
authorRodrigo Locatti <reinuseslisp@airmail.cc>2019-11-14 22:21:12 +0100
committerGitHub <noreply@github.com>2019-11-14 22:21:12 +0100
commit790a482bb4767f0b00095887277400a88730f0ae (patch)
tree6a8b4e15e706506fb1f8772d0ecee5065f7d202a /src/video_core/surface.cpp
parentMerge pull request #3089 from SciresM/play_statistics (diff)
parentcorrect the implementation of RGBA16UI (diff)
downloadyuzu-790a482bb4767f0b00095887277400a88730f0ae.tar
yuzu-790a482bb4767f0b00095887277400a88730f0ae.tar.gz
yuzu-790a482bb4767f0b00095887277400a88730f0ae.tar.bz2
yuzu-790a482bb4767f0b00095887277400a88730f0ae.tar.lz
yuzu-790a482bb4767f0b00095887277400a88730f0ae.tar.xz
yuzu-790a482bb4767f0b00095887277400a88730f0ae.tar.zst
yuzu-790a482bb4767f0b00095887277400a88730f0ae.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/surface.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/video_core/surface.cpp b/src/video_core/surface.cpp
index 621136b6e..4b6846113 100644
--- a/src/video_core/surface.cpp
+++ b/src/video_core/surface.cpp
@@ -249,6 +249,8 @@ PixelFormat PixelFormatFromTextureFormat(Tegra::Texture::TextureFormat format,
return PixelFormat::RGBA16U;
case Tegra::Texture::ComponentType::FLOAT:
return PixelFormat::RGBA16F;
+ case Tegra::Texture::ComponentType::UINT:
+ return PixelFormat::RGBA16UI;
default:
break;
}