summaryrefslogtreecommitdiffstats
path: root/src/video_core/surface.cpp
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2020-04-30 18:17:02 +0200
committerMorph <39850852+Morph1984@users.noreply.github.com>2020-04-30 19:19:36 +0200
commit7909860d16118f3db5006ccd379c1dae27eb5a1b (patch)
tree5506721386d37c2d3ea4425b155128b4bdc475e5 /src/video_core/surface.cpp
parentMerge pull request #3826 from MerryMage/update-dynarmic (diff)
downloadyuzu-7909860d16118f3db5006ccd379c1dae27eb5a1b.tar
yuzu-7909860d16118f3db5006ccd379c1dae27eb5a1b.tar.gz
yuzu-7909860d16118f3db5006ccd379c1dae27eb5a1b.tar.bz2
yuzu-7909860d16118f3db5006ccd379c1dae27eb5a1b.tar.lz
yuzu-7909860d16118f3db5006ccd379c1dae27eb5a1b.tar.xz
yuzu-7909860d16118f3db5006ccd379c1dae27eb5a1b.tar.zst
yuzu-7909860d16118f3db5006ccd379c1dae27eb5a1b.zip
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 cc7181229..bbe93903c 100644
--- a/src/video_core/surface.cpp
+++ b/src/video_core/surface.cpp
@@ -145,6 +145,8 @@ PixelFormat PixelFormatFromRenderTargetFormat(Tegra::RenderTargetFormat format)
return PixelFormat::RG8U;
case Tegra::RenderTargetFormat::RG8_SNORM:
return PixelFormat::RG8S;
+ case Tegra::RenderTargetFormat::RG8_UINT:
+ return PixelFormat::RG8UI;
case Tegra::RenderTargetFormat::R16_FLOAT:
return PixelFormat::R16F;
case Tegra::RenderTargetFormat::R16_UNORM: