blob: 96795083ee555c94910df95c3728185e14d27ec3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
namespace Ryujinx.Graphics.Gpu.State
{
/// <summary>
/// Primitive restart state.
/// </summary>
struct PrimitiveRestartState
{
public Boolean32 Enable;
public int Index;
}
}
|