aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.OpenGL/VertexBuffer.cs
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2022-08-11 20:21:56 -0300
committerGitHub <noreply@github.com>2022-08-11 20:21:56 -0300
commite8f1ca84277240c4d6215eb9cd85713aab73e2f7 (patch)
tree9cc785a705678a3e7e00232a2bd3b00279cdac04 /Ryujinx.Graphics.OpenGL/VertexBuffer.cs
parentad47bd2d4ef72e4489f037056ead0a5d021694cc (diff)
OpenGL: Limit vertex buffer range for non-indexed draws (#3542)
* Limit vertex buffer range for non-indexed draws * Fix typo
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;
- }
- }
-}