summaryrefslogtreecommitdiff
path: root/src/video_core/surface.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/video_core/surface.cpp')
-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 6e9b496d3..f132f1b43 100644
--- a/src/video_core/surface.cpp
+++ b/src/video_core/surface.cpp
@@ -166,6 +166,8 @@ PixelFormat PixelFormatFromRenderTargetFormat(Tegra::RenderTargetFormat format)
166 return PixelFormat::R8U; 166 return PixelFormat::R8U;
167 case Tegra::RenderTargetFormat::R8_SNORM: 167 case Tegra::RenderTargetFormat::R8_SNORM:
168 return PixelFormat::R8S; 168 return PixelFormat::R8S;
169 case Tegra::RenderTargetFormat::R8_SINT:
170 return PixelFormat::R8I;
169 case Tegra::RenderTargetFormat::R8_UINT: 171 case Tegra::RenderTargetFormat::R8_UINT:
170 return PixelFormat::R8UI; 172 return PixelFormat::R8UI;
171 default: 173 default: