1
0
Fork 0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2025-03-11 13:18:46 +01:00
Ryujinx/Ryujinx.Graphics.Gpu/Memory/IndexBuffer.cs
2020-01-09 02:13:00 +01:00

12 lines
No EOL
194 B
C#

using Ryujinx.Graphics.GAL;
namespace Ryujinx.Graphics.Gpu.Memory
{
struct IndexBuffer
{
public ulong Address;
public ulong Size;
public IndexType Type;
}
}