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