diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2021-12-30 13:10:54 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-30 17:10:54 +0100 |
| commit | c05c8e09d48eb36beef02fda885ec0fd36135463 (patch) | |
| tree | 7a83c260c275e9d445e0c2561c2894158b8620a5 /Ryujinx.Graphics.Gpu/Image/FormatTable.cs | |
| parent | 1485780d90a554a9a71585ff1dd6e049b32b761e (diff) | |
Add support for the R4G4 texture format (#2956)
Diffstat (limited to 'Ryujinx.Graphics.Gpu/Image/FormatTable.cs')
| -rw-r--r-- | Ryujinx.Graphics.Gpu/Image/FormatTable.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Ryujinx.Graphics.Gpu/Image/FormatTable.cs b/Ryujinx.Graphics.Gpu/Image/FormatTable.cs index 03687ade..3c97e2e2 100644 --- a/Ryujinx.Graphics.Gpu/Image/FormatTable.cs +++ b/Ryujinx.Graphics.Gpu/Image/FormatTable.cs @@ -58,6 +58,7 @@ namespace Ryujinx.Graphics.Gpu.Image { 0x25385, new FormatInfo(Format.D32FloatS8Uint, 1, 1, 8, 2) }, { 0x253b0, new FormatInfo(Format.D32FloatS8Uint, 1, 1, 8, 2) }, { 0xa4908, new FormatInfo(Format.R8G8B8A8Srgb, 1, 1, 4, 4) }, + { 0x2491e, new FormatInfo(Format.R4G4Unorm, 1, 1, 1, 2) }, { 0x24912, new FormatInfo(Format.R4G4B4A4Unorm, 1, 1, 2, 4) }, { 0x24914, new FormatInfo(Format.R5G5B5A1Unorm, 1, 1, 2, 4) }, { 0x24915, new FormatInfo(Format.R5G6B5Unorm, 1, 1, 2, 3) }, |
