summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 621136b6e..4b6846113 100644
--- a/src/video_core/surface.cpp
+++ b/src/video_core/surface.cpp
@@ -249,6 +249,8 @@ PixelFormat PixelFormatFromTextureFormat(Tegra::Texture::TextureFormat format,
249 return PixelFormat::RGBA16U; 249 return PixelFormat::RGBA16U;
250 case Tegra::Texture::ComponentType::FLOAT: 250 case Tegra::Texture::ComponentType::FLOAT:
251 return PixelFormat::RGBA16F; 251 return PixelFormat::RGBA16F;
252 case Tegra::Texture::ComponentType::UINT:
253 return PixelFormat::RGBA16UI;
252 default: 254 default:
253 break; 255 break;
254 } 256 }