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