aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Graphics.Gpu/Memory/VertexBuffer.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Ryujinx.Graphics.Gpu/Memory/VertexBuffer.cs')
-rw-r--r--src/Ryujinx.Graphics.Gpu/Memory/VertexBuffer.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Ryujinx.Graphics.Gpu/Memory/VertexBuffer.cs b/src/Ryujinx.Graphics.Gpu/Memory/VertexBuffer.cs
index ac334881..206e1b48 100644
--- a/src/Ryujinx.Graphics.Gpu/Memory/VertexBuffer.cs
+++ b/src/Ryujinx.Graphics.Gpu/Memory/VertexBuffer.cs
@@ -1,3 +1,5 @@
+using Ryujinx.Memory.Range;
+
namespace Ryujinx.Graphics.Gpu.Memory
{
/// <summary>
@@ -5,8 +7,7 @@ namespace Ryujinx.Graphics.Gpu.Memory
/// </summary>
struct VertexBuffer
{
- public ulong Address;
- public ulong Size;
+ public MultiRange Range;
public int Stride;
public int Divisor;
}