mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2024-12-01 04:57:18 +01:00
12 lines
211 B
C#
12 lines
211 B
C#
using Ryujinx.Graphics.GAL;
|
|
|
|
namespace Ryujinx.Graphics.Gpu.State
|
|
{
|
|
struct FaceState
|
|
{
|
|
public Boolean32 CullEnable;
|
|
public FrontFace FrontFace;
|
|
public Face CullFace;
|
|
}
|
|
}
|