Ryujinx/Ryujinx.Graphics/Gal/Shader/ShaderIrMetaTex.cs
2018-08-26 20:48:14 -03:00

18 lines
No EOL
458 B
C#

namespace Ryujinx.Graphics.Gal.Shader
{
class ShaderIrMetaTex : ShaderIrMeta
{
public ShaderTextureType Type { get; private set; }
public ShaderIrNode Index { get; private set; }
public int Elem { get; private set; }
public ShaderIrMetaTex(ShaderTextureType Type, ShaderIrNode Index, int Elem)
{
this.Type = Type;
this.Index = Index;
this.Elem = Elem;
}
}
}