mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-04-30 20:57:43 +02:00
14 lines
297 B
C#
14 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;
|
|
}
|
|
}
|