1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-03-11 17:59:36 -05:00

11 lines
165 B
C#
Raw Normal View History

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