blob: 536d7dcfd850675eb1ea9bd8c24984b5ccae4485 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
namespace Ryujinx.Graphics.Gpu.State
{
struct ShaderState
{
public uint Control;
public uint Offset;
public uint Unknown0x8;
public int MaxRegisters;
public ShaderType Type;
public uint Unknown0x14;
public uint Unknown0x18;
public uint Unknown0x1c;
public bool UnpackEnable()
{
return (Control & 1) != 0;
}
}
}
|