diff options
Diffstat (limited to 'Ryujinx.Graphics/Shader/Decoders/OpCodeAttribute.cs')
| -rw-r--r-- | Ryujinx.Graphics/Shader/Decoders/OpCodeAttribute.cs | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/Ryujinx.Graphics/Shader/Decoders/OpCodeAttribute.cs b/Ryujinx.Graphics/Shader/Decoders/OpCodeAttribute.cs deleted file mode 100644 index fd8e63fc..00000000 --- a/Ryujinx.Graphics/Shader/Decoders/OpCodeAttribute.cs +++ /dev/null @@ -1,16 +0,0 @@ -using Ryujinx.Graphics.Shader.Instructions; - -namespace Ryujinx.Graphics.Shader.Decoders -{ - class OpCodeAttribute : OpCodeAluReg - { - public int AttributeOffset { get; } - public int Count { get; } - - public OpCodeAttribute(InstEmitter emitter, ulong address, long opCode) : base(emitter, address, opCode) - { - AttributeOffset = opCode.Extract(20, 10); - Count = opCode.Extract(47, 2) + 1; - } - } -}
\ No newline at end of file |
