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 9c19e2838..b287fe83f 100644
--- a/src/video_core/surface.cpp
+++ b/src/video_core/surface.cpp
@@ -94,6 +94,8 @@ PixelFormat PixelFormatFromRenderTargetFormat(Tegra::RenderTargetFormat format)
94 switch (format) { 94 switch (format) {
95 case Tegra::RenderTargetFormat::RGBA32_FLOAT: 95 case Tegra::RenderTargetFormat::RGBA32_FLOAT:
96 return PixelFormat::RGBA32F; 96 return PixelFormat::RGBA32F;
97 case Tegra::RenderTargetFormat::RGBA32_SINT:
98 return PixelFormat::RGBA32I;
97 case Tegra::RenderTargetFormat::RGBA32_UINT: 99 case Tegra::RenderTargetFormat::RGBA32_UINT:
98 return PixelFormat::RGBA32UI; 100 return PixelFormat::RGBA32UI;
99 case Tegra::RenderTargetFormat::RGBA16_UNORM: 101 case Tegra::RenderTargetFormat::RGBA16_UNORM: