summaryrefslogtreecommitdiffstats
path: root/src/video_core/surface.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-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)
return PixelFormat::R16F;
case Tegra::RenderTargetFormat::R8_UNORM:
return PixelFormat::R8U;
+ case Tegra::RenderTargetFormat::R8_SNORM:
+ return PixelFormat::R8S;
case Tegra::RenderTargetFormat::R8_UINT:
return PixelFormat::R8UI;
default: