aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHorrorTroll <sonicvipduc@gmail.com>2019-09-02 04:12:16 +0700
committerThomas Guillemard <me@thog.eu>2019-09-01 23:12:16 +0200
commita1c74155656c63de22586de78dd8d7b78caeb551 (patch)
tree8869da14af04e817db81f71ba18f00c07e02ed12
parent6b8fb8a4e3da7b4864c65cf9842e89e462fcc81b (diff)
Add Rgba16Uint (#746)
-rw-r--r--Ryujinx.Graphics/Graphics3d/Texture/ImageUtils.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/Ryujinx.Graphics/Graphics3d/Texture/ImageUtils.cs b/Ryujinx.Graphics/Graphics3d/Texture/ImageUtils.cs
index 62dae00b..ab45e985 100644
--- a/Ryujinx.Graphics/Graphics3d/Texture/ImageUtils.cs
+++ b/Ryujinx.Graphics/Graphics3d/Texture/ImageUtils.cs
@@ -180,6 +180,7 @@ namespace Ryujinx.Graphics.Texture
case GalSurfaceFormat.Rgba32Float: return GalImageFormat.Rgba32 | Float;
case GalSurfaceFormat.Rgba32Uint: return GalImageFormat.Rgba32 | Uint;
case GalSurfaceFormat.Rgba16Float: return GalImageFormat.Rgba16 | Float;
+ case GalSurfaceFormat.Rgba16Uint: return GalImageFormat.Rgba16 | Uint;
case GalSurfaceFormat.Rgba16Unorm: return GalImageFormat.Rgba16 | Unorm;
case GalSurfaceFormat.Rg32Float: return GalImageFormat.Rg32 | Float;
case GalSurfaceFormat.Rg32Sint: return GalImageFormat.Rg32 | Sint;