diff options
author | Rodrigo Locatti <reinuseslisp@airmail.cc> | 2019-11-14 18:21:12 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-14 18:21:12 -0300 |
commit | 790a482bb4767f0b00095887277400a88730f0ae (patch) | |
tree | 6a8b4e15e706506fb1f8772d0ecee5065f7d202a /src/video_core/surface.cpp | |
parent | 885d88825ef455648537f5dca745bcc30da135e5 (diff) | |
parent | c6bc13d0aafd0d825f05a5c64fa40f3da7a41876 (diff) |
Merge pull request #3110 from greggameplayer/CompleteRGBA16UI
Complete the implementation of RGBA16UI
Diffstat (limited to 'src/video_core/surface.cpp')
-rw-r--r-- | src/video_core/surface.cpp | 2 |
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; } |