aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics/Gal/Shader/ShaderIrMetaTex.cs
blob: 82f3bb774ade82f6db1c34f8ece59532b1d620cc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
namespace Ryujinx.Graphics.Gal.Shader
{
    class ShaderIrMetaTex : ShaderIrMeta
    {
        public int Elem { get; private set; }

        public ShaderIrMetaTex(int Elem)
        {
            this.Elem = Elem;
        }
    }
}