From a1c74155656c63de22586de78dd8d7b78caeb551 Mon Sep 17 00:00:00 2001 From: HorrorTroll Date: Mon, 2 Sep 2019 04:12:16 +0700 Subject: [PATCH] Add Rgba16Uint (#746) --- Ryujinx.Graphics/Graphics3d/Texture/ImageUtils.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Ryujinx.Graphics/Graphics3d/Texture/ImageUtils.cs b/Ryujinx.Graphics/Graphics3d/Texture/ImageUtils.cs index 62dae00b5..ab45e9854 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;