mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-10 16:11:44 +00:00
18 lines
329 B
C#
18 lines
329 B
C#
|
namespace Ryujinx.Graphics.Gpu.State
|
||
|
{
|
||
|
struct RtControl
|
||
|
{
|
||
|
public uint Packed;
|
||
|
|
||
|
public int UnpackCount()
|
||
|
{
|
||
|
return (int)(Packed & 0xf);
|
||
|
}
|
||
|
|
||
|
public int UnpackPermutationIndex(int index)
|
||
|
{
|
||
|
return (int)((Packed >> (4 + index * 3)) & 7);
|
||
|
}
|
||
|
}
|
||
|
}
|