aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics/Gal/GalImageFormat.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Graphics/Gal/GalImageFormat.cs')
-rw-r--r--Ryujinx.Graphics/Gal/GalImageFormat.cs69
1 files changed, 0 insertions, 69 deletions
diff --git a/Ryujinx.Graphics/Gal/GalImageFormat.cs b/Ryujinx.Graphics/Gal/GalImageFormat.cs
deleted file mode 100644
index 19ce6cfc..00000000
--- a/Ryujinx.Graphics/Gal/GalImageFormat.cs
+++ /dev/null
@@ -1,69 +0,0 @@
-// ReSharper disable InconsistentNaming
-using System;
-
-namespace Ryujinx.Graphics.Gal
-{
- [Flags]
- public enum GalImageFormat
- {
- Astc2DStart,
- Astc2D4x4,
- Astc2D5x4,
- Astc2D5x5,
- Astc2D6x5,
- Astc2D6x6,
- Astc2D8x5,
- Astc2D8x6,
- Astc2D8x8,
- Astc2D10x5,
- Astc2D10x6,
- Astc2D10x8,
- Astc2D10x10,
- Astc2D12x10,
- Astc2D12x12,
- Astc2DEnd,
-
- Rgba4,
- Rgb565,
- Bgr565,
- Bgr5A1,
- Rgb5A1,
- R8,
- Rg8,
- Rgbx8,
- Rgba8,
- Bgra8,
- Rgb10A2,
- R16,
- Rg16,
- Rgba16,
- R32,
- Rg32,
- Rgba32,
- R11G11B10,
- D16,
- D24,
- D32,
- D24S8,
- D32S8,
- BC1,
- BC2,
- BC3,
- BC4,
- BC5,
- BptcSfloat,
- BptcUfloat,
- BptcUnorm,
-
- Snorm = 1 << 26,
- Unorm = 1 << 27,
- Sint = 1 << 28,
- Uint = 1 << 39,
- Float = 1 << 30,
- Srgb = 1 << 31,
-
- TypeMask = Snorm | Unorm | Sint | Uint | Float | Srgb,
-
- FormatMask = ~TypeMask
- }
-} \ No newline at end of file