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 2392a46f4..6e9b496d3 100644
--- a/src/video_core/surface.cpp
+++ b/src/video_core/surface.cpp
@@ -164,6 +164,8 @@ PixelFormat PixelFormatFromRenderTargetFormat(Tegra::RenderTargetFormat format)
164 return PixelFormat::R16F; 164 return PixelFormat::R16F;
165 case Tegra::RenderTargetFormat::R8_UNORM: 165 case Tegra::RenderTargetFormat::R8_UNORM:
166 return PixelFormat::R8U; 166 return PixelFormat::R8U;
167 case Tegra::RenderTargetFormat::R8_SNORM:
168 return PixelFormat::R8S;
167 case Tegra::RenderTargetFormat::R8_UINT: 169 case Tegra::RenderTargetFormat::R8_UINT:
168 return PixelFormat::R8UI; 170 return PixelFormat::R8UI;
169 default: 171 default: