mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 03:08:40 +00:00
14 lines
276 B
C#
14 lines
276 B
C#
|
using Ryujinx.Graphics.GAL;
|
||
|
|
||
|
namespace Ryujinx.Graphics.Gpu.State
|
||
|
{
|
||
|
struct IndexBufferState
|
||
|
{
|
||
|
public GpuVa Address;
|
||
|
public GpuVa EndAddress;
|
||
|
public IndexType Type;
|
||
|
public int First;
|
||
|
public int Count;
|
||
|
}
|
||
|
}
|