diff options
author | Rodrigo Locatti <reinuseslisp@airmail.cc> | 2019-10-28 01:36:58 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-28 01:36:58 -0300 |
commit | c5d9589942b77c70c37982bd3b407abfdcca26a2 (patch) | |
tree | 7cdcc51a16a51f40ef98c4e214aa6bb52778a0db /src/video_core/surface.cpp | |
parent | 4c5731c34f0915457a31c60c9f70a2f169ea575d (diff) | |
parent | 3f9262195b1ab4828d93f661e1b0dedacb01f937 (diff) |
Merge pull request #3037 from FernandoS27/new-formats
video_core: Implement texture format E5B9G9R9_SHAREDEXP.
Diffstat (limited to 'src/video_core/surface.cpp')
-rw-r--r-- | src/video_core/surface.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/video_core/surface.cpp b/src/video_core/surface.cpp index 9a3c05288..621136b6e 100644 --- a/src/video_core/surface.cpp +++ b/src/video_core/surface.cpp @@ -315,6 +315,14 @@ PixelFormat PixelFormatFromTextureFormat(Tegra::Texture::TextureFormat format, break; } break; + case Tegra::Texture::TextureFormat::E5B9G9R9_SHAREDEXP: + switch (component_type) { + case Tegra::Texture::ComponentType::FLOAT: + return PixelFormat::E5B9G9R9F; + default: + break; + } + break; case Tegra::Texture::TextureFormat::ZF32: return PixelFormat::Z32F; case Tegra::Texture::TextureFormat::Z16: |