diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2022-08-11 20:21:56 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-08-11 20:21:56 -0300 |
| commit | e8f1ca84277240c4d6215eb9cd85713aab73e2f7 (patch) | |
| tree | 9cc785a705678a3e7e00232a2bd3b00279cdac04 /Ryujinx.Graphics.OpenGL/VertexBuffer.cs | |
| parent | ad47bd2d4ef72e4489f037056ead0a5d021694cc (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.cs | 19 |
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; - } - } -} |
