2019-10-13 02:02:07 -04:00
|
|
|
namespace Ryujinx.Graphics.Gpu.State
|
|
|
|
{
|
2019-12-31 11:32:06 -05:00
|
|
|
/// <summary>
|
|
|
|
/// Primitive restart state.
|
|
|
|
/// </summary>
|
2019-10-13 02:02:07 -04:00
|
|
|
struct PrimitiveRestartState
|
|
|
|
{
|
2019-10-26 13:50:52 -04:00
|
|
|
public Boolean32 Enable;
|
|
|
|
public int Index;
|
2019-10-13 02:02:07 -04:00
|
|
|
}
|
|
|
|
}
|