aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Graphics.GAL/VertexBufferDescriptor.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Ryujinx.Graphics.GAL/VertexBufferDescriptor.cs')
-rw-r--r--src/Ryujinx.Graphics.GAL/VertexBufferDescriptor.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Ryujinx.Graphics.GAL/VertexBufferDescriptor.cs b/src/Ryujinx.Graphics.GAL/VertexBufferDescriptor.cs
index 15f0dff8..8fd3c816 100644
--- a/src/Ryujinx.Graphics.GAL/VertexBufferDescriptor.cs
+++ b/src/Ryujinx.Graphics.GAL/VertexBufferDescriptor.cs
@@ -4,13 +4,13 @@ namespace Ryujinx.Graphics.GAL
{
public BufferRange Buffer { get; }
- public int Stride { get; }
+ public int Stride { get; }
public int Divisor { get; }
public VertexBufferDescriptor(BufferRange buffer, int stride, int divisor)
{
- Buffer = buffer;
- Stride = stride;
+ Buffer = buffer;
+ Stride = stride;
Divisor = divisor;
}
}