diff options
Diffstat (limited to 'src/Ryujinx.Graphics.Gpu/Memory/IndexBuffer.cs')
-rw-r--r-- | src/Ryujinx.Graphics.Gpu/Memory/IndexBuffer.cs | 15 |
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 |