This repository has been archived on 2026-01-05. You can view files and clone it, but cannot push or open issues/pull-requests.
ryubing/Ryujinx.Graphics.Shader/Decoders/SystemRegister.cs

14 lines
297 B
C#

namespace Ryujinx.Graphics.Shader.Decoders
{
enum SystemRegister
{
YDirection = 0x12,
ThreadId = 0x20,
ThreadIdX = 0x21,
ThreadIdY = 0x22,
ThreadIdZ = 0x23,
CtaIdX = 0x25,
CtaIdY = 0x26,
CtaIdZ = 0x27
}
}