mirror of
https://git.ryujinx.app/kenji-nx/ryujinx.git
synced 2025-12-15 01:37:03 +00:00
13 lines
276 B
C#
13 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;
|
|
}
|
|
}
|