aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Graphics.Gpu/Memory/IndexBuffer.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Ryujinx.Graphics.Gpu/Memory/IndexBuffer.cs')
-rw-r--r--src/Ryujinx.Graphics.Gpu/Memory/IndexBuffer.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/Ryujinx.Graphics.Gpu/Memory/IndexBuffer.cs b/src/Ryujinx.Graphics.Gpu/Memory/IndexBuffer.cs
new file mode 100644
index 00000000..7765e899
--- /dev/null
+++ b/src/Ryujinx.Graphics.Gpu/Memory/IndexBuffer.cs
@@ -0,0 +1,15 @@
+using Ryujinx.Graphics.GAL;
+
+namespace Ryujinx.Graphics.Gpu.Memory
+{
+ /// <summary>
+ /// GPU Index Buffer information.
+ /// </summary>
+ struct IndexBuffer
+ {
+ public ulong Address;
+ public ulong Size;
+
+ public IndexType Type;
+ }
+} \ No newline at end of file