mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 07:38:33 +00:00
15 lines
297 B
C#
15 lines
297 B
C#
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;
|
|
}
|
|
}
|