aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics/Gal/Shader/ShaderIrMetaTexq.cs
blob: c925ea4e1a17f43516eb4e895c17aaf480b26208 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
namespace Ryujinx.Graphics.Gal.Shader
{
    class ShaderIrMetaTexq : ShaderIrMeta
    {
        public ShaderTexqInfo Info { get; private set; }

        public int Elem { get; private set; }

        public ShaderIrMetaTexq(ShaderTexqInfo info, int elem)
        {
            Info = info;
            Elem = elem;
        }
    }
}