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