Ryujinx/Ryujinx.Graphics.Gpu/Memory/IndexBuffer.cs
2020-01-09 02:13:00 +01:00

12 lines
194 B
C#

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