0
0
Fork 0
mirror of https://github.com/GreemDev/Ryujinx.git synced 2024-12-23 12:45:48 +00: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;
}
}