Keaton-Ryujinx/src/Ryujinx.Graphics.GAL/Face.cs
sunshineinabox 0cef96477f
Some checks are pending
Release job / Create tag (push) Waiting to run
Release job / Release for linux-arm64 (push) Waiting to run
Release job / Release for linux-x64 (push) Waiting to run
Release job / Release for win-x64 (push) Waiting to run
Release job / Release MacOS universal (push) Waiting to run
Release job / flatpak_release (push) Blocked by required conditions
Support VK_EXT_extended_dynamic_state and VK_EXT_extended_dynamic_state2
2025-03-24 11:15:33 -05:00

10 lines
161 B
C#

namespace Ryujinx.Graphics.GAL
{
public enum Face
{
None = 0,
Front = 0x404,
Back = 0x405,
FrontAndBack = 0x408,
}
}