mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 12:29:00 +00:00
11 lines
165 B
C#
11 lines
165 B
C#
using System;
|
|
|
|
namespace Ryujinx.Graphics.Gpu.Shader.Cache.Definition
|
|
{
|
|
[Flags]
|
|
enum GuestGpuStateFlags : byte
|
|
{
|
|
EarlyZForce = 1 << 0
|
|
}
|
|
}
|