From fe92137168b91a43c14e8c6d036a6c9d005e4eaa Mon Sep 17 00:00:00 2001 From: HorrorTroll Date: Sat, 15 Sep 2018 16:27:06 +0700 Subject: [PATCH] Implement RGBA32Uint --- Ryujinx.Graphics/Texture/ImageUtils.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Ryujinx.Graphics/Texture/ImageUtils.cs b/Ryujinx.Graphics/Texture/ImageUtils.cs index 38b50fb625..1b3b791671 100644 --- a/Ryujinx.Graphics/Texture/ImageUtils.cs +++ b/Ryujinx.Graphics/Texture/ImageUtils.cs @@ -167,6 +167,7 @@ namespace Ryujinx.Graphics.Texture switch (Format) { case GalSurfaceFormat.RGBA32Float: return GalImageFormat.R32G32B32A32 | Sfloat; + case GalSurfaceFormat.RGBA32Uint: return GalImageFormat.R32G32B32A32 | Uint; case GalSurfaceFormat.RGBA16Float: return GalImageFormat.R16G16B16A16 | Sfloat; case GalSurfaceFormat.RG32Float: return GalImageFormat.R32G32 | Sfloat; case GalSurfaceFormat.RG32Sint: return GalImageFormat.R32G32 | Sint;