0
0
mirror of https://git.ryujinx.app/ryubing/ryujinx.git synced 2025-04-28 08:25:13 +00:00
2020-12-02 00:13:27 +01:00

11 lines
165 B
C#

using System;
namespace Ryujinx.Graphics.Gpu.Shader.Cache.Definition
{
[Flags]
enum GuestGpuStateFlags : byte
{
EarlyZForce = 1 << 0
}
}