aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics/Gal/GalTextureFormat.cs
diff options
context:
space:
mode:
authorgreggameplayer <33609333+greggameplayer@users.noreply.github.com>2018-07-16 20:09:34 +0200
committergdkchan <gab.dark.100@gmail.com>2018-07-16 15:09:34 -0300
commite71da4fb747aaff45eafd40bbbd62638b4d659c7 (patch)
tree6681e7341a1393ba1d154aea68fbb9d0d28704a3 /Ryujinx.Graphics/Gal/GalTextureFormat.cs
parent3e13b40b353a61fe57d1bc1440e1db9bc133df08 (diff)
Implement BC6H_SF16 & BC6H_UF16 Texture Formats (#255)
* Implement BC6H_SF16 & BC6H_UF16 * correct coding style (1/5) * correct coding style (2/5) * correct coding style (3/5) * correct coding style (4/5) * correct coding style (5/5)
Diffstat (limited to 'Ryujinx.Graphics/Gal/GalTextureFormat.cs')
-rw-r--r--Ryujinx.Graphics/Gal/GalTextureFormat.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/Ryujinx.Graphics/Gal/GalTextureFormat.cs b/Ryujinx.Graphics/Gal/GalTextureFormat.cs
index 231d33ec..30f5c229 100644
--- a/Ryujinx.Graphics/Gal/GalTextureFormat.cs
+++ b/Ryujinx.Graphics/Gal/GalTextureFormat.cs
@@ -6,6 +6,8 @@ namespace Ryujinx.Graphics.Gal
R16G16B16A16 = 0x3,
A8B8G8R8 = 0x8,
R32 = 0xf,
+ BC6H_SF16 = 0x10,
+ BC6H_UF16 = 0x11,
A1B5G5R5 = 0x14,
B5G6R5 = 0x15,
BC7U = 0x17,