mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-09 20:18:35 +00:00
12 lines
194 B
C#
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;
|
||
|
}
|
||
|
}
|