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