mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-09 01:38:39 +00:00
14 lines
364 B
C#
14 lines
364 B
C#
|
using Ryujinx.Graphics.Shader.Instructions;
|
||
|
|
||
|
namespace Ryujinx.Graphics.Shader.Decoders
|
||
|
{
|
||
|
class OpCodeIpa : OpCodeAluReg
|
||
|
{
|
||
|
public int AttributeOffset { get; }
|
||
|
|
||
|
public OpCodeIpa(InstEmitter emitter, ulong address, long opCode) : base(emitter, address, opCode)
|
||
|
{
|
||
|
AttributeOffset = opCode.Extract(28, 10);
|
||
|
}
|
||
|
}
|
||
|
}
|