diff options
author | ReinUsesLisp <reinuseslisp@airmail.cc> | 2020-06-30 04:00:23 -0300 |
---|---|---|
committer | ReinUsesLisp <reinuseslisp@airmail.cc> | 2020-07-13 01:01:08 -0300 |
commit | f29fede49c647ce336de2fb4f48aba25f968a882 (patch) | |
tree | 221f82144265a6587440ee801b5d4662f1d49a27 /src/video_core/surface.cpp | |
parent | fd33e996e0d6d441917446f7a9ec854b0a79a909 (diff) |
video_core: Implement R8_SINT render target
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 6e9b496d36..f132f1b43e 100644 --- a/src/video_core/surface.cpp +++ b/src/video_core/surface.cpp @@ -166,6 +166,8 @@ PixelFormat PixelFormatFromRenderTargetFormat(Tegra::RenderTargetFormat format) return PixelFormat::R8U; case Tegra::RenderTargetFormat::R8_SNORM: return PixelFormat::R8S; + case Tegra::RenderTargetFormat::R8_SINT: + return PixelFormat::R8I; case Tegra::RenderTargetFormat::R8_UINT: return PixelFormat::R8UI; default: |