From e7fe7d724778535f8eff390abef54274a343c0b7 Mon Sep 17 00:00:00 2001 From: HorrorTroll Date: Fri, 23 Nov 2018 21:21:45 +0700 Subject: Add RGBA16 Unorm (#513) --- Ryujinx.Graphics/Texture/ImageUtils.cs | 1 + 1 file changed, 1 insertion(+) (limited to 'Ryujinx.Graphics/Texture') diff --git a/Ryujinx.Graphics/Texture/ImageUtils.cs b/Ryujinx.Graphics/Texture/ImageUtils.cs index 417d7998..479be5b1 100644 --- a/Ryujinx.Graphics/Texture/ImageUtils.cs +++ b/Ryujinx.Graphics/Texture/ImageUtils.cs @@ -176,6 +176,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.RGBA16Unorm: return GalImageFormat.RGBA16 | Unorm; case GalSurfaceFormat.RG32Float: return GalImageFormat.RG32 | Float; case GalSurfaceFormat.RG32Sint: return GalImageFormat.RG32 | Sint; case GalSurfaceFormat.RG32Uint: return GalImageFormat.RG32 | Uint; -- cgit v1.2.3