From 76d9e2763a85350812f810d5a0670efc3a51b4f3 Mon Sep 17 00:00:00 2001 From: LDj3SNuD <35856442+LDj3SNuD@users.noreply.github.com> Date: Sun, 8 Apr 2018 21:53:35 +0200 Subject: [PATCH] Update GalTextureFormat.cs --- Ryujinx.Graphics/Gal/GalTextureFormat.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Ryujinx.Graphics/Gal/GalTextureFormat.cs b/Ryujinx.Graphics/Gal/GalTextureFormat.cs index cf948526a..5b6429612 100644 --- a/Ryujinx.Graphics/Gal/GalTextureFormat.cs +++ b/Ryujinx.Graphics/Gal/GalTextureFormat.cs @@ -3,8 +3,9 @@ namespace Ryujinx.Graphics.Gal public enum GalTextureFormat { A8B8G8R8 = 0x8, + A1B5G5R5 = 0x14, BC1 = 0x24, BC2 = 0x25, BC3 = 0x26 } -} \ No newline at end of file +}