aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics/Gal/GalTextureFormat.cs
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2018-10-17 18:02:23 -0300
committerGitHub <noreply@github.com>2018-10-17 18:02:23 -0300
commit0e1e094b7a8f0134831fc4cebdb0841b9c10fe6a (patch)
tree81ba6446851a033f27adeafbfb94751032108047 /Ryujinx.Graphics/Gal/GalTextureFormat.cs
parent02a8e7fc9369d7882db08a69d108beefb0f98677 (diff)
Improve texture tables (#457)
* Improve texture tables * More renaming and other tweaks * Minor tweaks
Diffstat (limited to 'Ryujinx.Graphics/Gal/GalTextureFormat.cs')
-rw-r--r--Ryujinx.Graphics/Gal/GalTextureFormat.cs80
1 files changed, 40 insertions, 40 deletions
diff --git a/Ryujinx.Graphics/Gal/GalTextureFormat.cs b/Ryujinx.Graphics/Gal/GalTextureFormat.cs
index 5ad76943..51ce5779 100644
--- a/Ryujinx.Graphics/Gal/GalTextureFormat.cs
+++ b/Ryujinx.Graphics/Gal/GalTextureFormat.cs
@@ -2,45 +2,45 @@ namespace Ryujinx.Graphics.Gal
{
public enum GalTextureFormat
{
- R32G32B32A32 = 0x1,
- R16G16B16A16 = 0x3,
- R32G32 = 0x4,
- A8B8G8R8 = 0x8,
- A2B10G10R10 = 0x9,
- R16G16 = 0xc,
- R32 = 0xf,
- BC6H_SF16 = 0x10,
- BC6H_UF16 = 0x11,
- A4B4G4R4 = 0x12,
- A1B5G5R5 = 0x14,
- B5G6R5 = 0x15,
- BC7U = 0x17,
- G8R8 = 0x18,
- R16 = 0x1b,
- R8 = 0x1d,
- BF10GF11RF11 = 0x21,
- BC1 = 0x24,
- BC2 = 0x25,
- BC3 = 0x26,
- BC4 = 0x27,
- BC5 = 0x28,
- Z24S8 = 0x29,
- ZF32 = 0x2f,
- ZF32_X24S8 = 0x30,
- Z16 = 0x3a,
- Astc2D4x4 = 0x40,
- Astc2D5x5 = 0x41,
- Astc2D6x6 = 0x42,
- Astc2D8x8 = 0x44,
- Astc2D10x10 = 0x45,
- Astc2D12x12 = 0x46,
- Astc2D5x4 = 0x50,
- Astc2D6x5 = 0x51,
- Astc2D8x6 = 0x52,
- Astc2D10x8 = 0x53,
- Astc2D12x10 = 0x54,
- Astc2D8x5 = 0x55,
- Astc2D10x5 = 0x56,
- Astc2D10x6 = 0x57
+ RGBA32 = 0x1,
+ RGBA16 = 0x3,
+ RG32 = 0x4,
+ RGBA8 = 0x8,
+ RGB10A2 = 0x9,
+ RG16 = 0xc,
+ R32 = 0xf,
+ BptcSfloat = 0x10,
+ BptcUfloat = 0x11,
+ RGBA4 = 0x12,
+ RGB5A1 = 0x14,
+ RGB565 = 0x15,
+ BptcUnorm = 0x17,
+ RG8 = 0x18,
+ R16 = 0x1b,
+ R8 = 0x1d,
+ R11G11B10F = 0x21,
+ BC1 = 0x24,
+ BC2 = 0x25,
+ BC3 = 0x26,
+ BC4 = 0x27,
+ BC5 = 0x28,
+ D24S8 = 0x29,
+ D32F = 0x2f,
+ D32FX24S8 = 0x30,
+ D16 = 0x3a,
+ Astc2D4x4 = 0x40,
+ Astc2D5x5 = 0x41,
+ Astc2D6x6 = 0x42,
+ Astc2D8x8 = 0x44,
+ Astc2D10x10 = 0x45,
+ Astc2D12x12 = 0x46,
+ Astc2D5x4 = 0x50,
+ Astc2D6x5 = 0x51,
+ Astc2D8x6 = 0x52,
+ Astc2D10x8 = 0x53,
+ Astc2D12x10 = 0x54,
+ Astc2D8x5 = 0x55,
+ Astc2D10x5 = 0x56,
+ Astc2D10x6 = 0x57
}
}