2019-10-13 08:02:07 +02:00
|
|
|
using Ryujinx.Graphics.GAL;
|
|
|
|
|
|
|
|
namespace Ryujinx.Graphics.Gpu.State
|
|
|
|
{
|
2019-12-31 17:32:06 +01:00
|
|
|
/// <summary>
|
|
|
|
/// GPU index buffer state.
|
|
|
|
/// This is used on indexed draws.
|
|
|
|
/// </summary>
|
2019-10-13 08:02:07 +02:00
|
|
|
struct IndexBufferState
|
|
|
|
{
|
2020-04-20 23:59:59 +02:00
|
|
|
#pragma warning disable CS0649
|
2019-10-13 08:02:07 +02:00
|
|
|
public GpuVa Address;
|
|
|
|
public GpuVa EndAddress;
|
|
|
|
public IndexType Type;
|
|
|
|
public int First;
|
|
|
|
public int Count;
|
2020-04-20 23:59:59 +02:00
|
|
|
#pragma warning restore CS0649
|
2019-10-13 08:02:07 +02:00
|
|
|
}
|
|
|
|
}
|