aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics/Shader/Decoders/OpCodeAttribute.cs
blob: fd8e63fcfb16b59cbeec99e7e29b982e5cdd6d06 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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;
        }
    }
}