aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics/Gal/GalVertexAttribSize.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Graphics/Gal/GalVertexAttribSize.cs')
-rw-r--r--Ryujinx.Graphics/Gal/GalVertexAttribSize.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/Ryujinx.Graphics/Gal/GalVertexAttribSize.cs b/Ryujinx.Graphics/Gal/GalVertexAttribSize.cs
new file mode 100644
index 00000000..d3ce60ac
--- /dev/null
+++ b/Ryujinx.Graphics/Gal/GalVertexAttribSize.cs
@@ -0,0 +1,20 @@
+namespace Ryujinx.Graphics.Gal
+{
+ public enum GalVertexAttribSize
+ {
+ _32_32_32_32 = 0x1,
+ _32_32_32 = 0x2,
+ _16_16_16_16 = 0x3,
+ _32_32 = 0x4,
+ _16_16_16 = 0x5,
+ _8_8_8_8 = 0xa,
+ _16_16 = 0xf,
+ _32 = 0x12,
+ _8_8_8 = 0x13,
+ _8_8 = 0x18,
+ _16 = 0x1b,
+ _8 = 0x1d,
+ _10_10_10_2 = 0x30,
+ _11_11_10 = 0x31
+ }
+} \ No newline at end of file