diff options
| author | LDj3SNuD <35856442+LDj3SNuD@users.noreply.github.com> | 2018-04-08 23:08:36 +0200 |
|---|---|---|
| committer | gdkchan <gab.dark.100@gmail.com> | 2018-04-08 18:08:36 -0300 |
| commit | e9cfdef0982824b673c60b362524408a263946df (patch) | |
| tree | ddbcdbc4ebf6be77eba2f8512e1dfc9e38e02ca4 /Ryujinx.Graphics/Gal | |
| parent | ecf02f525f6505cf4576e750772ee6295a29e39e (diff) | |
Add A1B5G5R5 texture format. (#76)
* Update GalTextureFormat.cs
* Update TextureReader.cs
Diffstat (limited to 'Ryujinx.Graphics/Gal')
| -rw-r--r-- | Ryujinx.Graphics/Gal/GalTextureFormat.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Ryujinx.Graphics/Gal/GalTextureFormat.cs b/Ryujinx.Graphics/Gal/GalTextureFormat.cs index cf948526..5b642961 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 +} |
