aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics/Gal/Shader/ShaderIrOperCbuf.cs
blob: f227205630794678c9b8b86b69ec7d423756ee7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
namespace Ryujinx.Graphics.Gal.Shader
{
    class ShaderIrOperCbuf : ShaderIrNode
    {
        public int Index { get; private set; }
        public int Offs  { get; private set; }

        public ShaderIrOperCbuf(int Index, int Offs)
        {
            this.Index = Index;
            this.Offs  = Offs;
        }
    }
}