blob: e817b3ae3e9f1a41db9b3dfc6165a25f0e87993d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
using Ryujinx.Graphics.GAL;
namespace Ryujinx.Graphics.Gpu.State
{
/// <summary>
/// Face culling and orientation parameters.
/// </summary>
struct FaceState
{
#pragma warning disable CS0649
public Boolean32 CullEnable;
public FrontFace FrontFace;
public Face CullFace;
#pragma warning restore CS0649
}
}
|