aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics/Gal/GalTextureFormat.cs
diff options
context:
space:
mode:
authorgdk <gab.dark.100@gmail.com>2019-10-13 03:02:07 -0300
committerThog <thog@protonmail.com>2020-01-09 02:13:00 +0100
commit1876b346fea647e8284a66bb6d62c38801035cff (patch)
tree6eeff094298cda84d1613dc5ec0691e51d7b35f1 /Ryujinx.Graphics/Gal/GalTextureFormat.cs
parentf617fb542a0e3d36012d77a4b5acbde7b08902f2 (diff)
Initial work
Diffstat (limited to 'Ryujinx.Graphics/Gal/GalTextureFormat.cs')
-rw-r--r--Ryujinx.Graphics/Gal/GalTextureFormat.cs46
1 files changed, 0 insertions, 46 deletions
diff --git a/Ryujinx.Graphics/Gal/GalTextureFormat.cs b/Ryujinx.Graphics/Gal/GalTextureFormat.cs
deleted file mode 100644
index ed27180a..00000000
--- a/Ryujinx.Graphics/Gal/GalTextureFormat.cs
+++ /dev/null
@@ -1,46 +0,0 @@
-namespace Ryujinx.Graphics.Gal
-{
- public enum GalTextureFormat
- {
- 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
- }
-}