aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.OpenGL/VertexBuffer.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Graphics.OpenGL/VertexBuffer.cs')
-rw-r--r--Ryujinx.Graphics.OpenGL/VertexBuffer.cs19
1 files changed, 0 insertions, 19 deletions
diff --git a/Ryujinx.Graphics.OpenGL/VertexBuffer.cs b/Ryujinx.Graphics.OpenGL/VertexBuffer.cs
deleted file mode 100644
index 19a58053..00000000
--- a/Ryujinx.Graphics.OpenGL/VertexBuffer.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-using Ryujinx.Graphics.GAL;
-
-namespace Ryujinx.Graphics.OpenGL
-{
- struct VertexBuffer
- {
- public BufferRange Range { get; }
-
- public int Divisor { get; }
- public int Stride { get; }
-
- public VertexBuffer(BufferRange range, int divisor, int stride)
- {
- Range = range;
- Divisor = divisor;
- Stride = stride;
- }
- }
-}