Ryujinx/Ryujinx.Graphics/Gal/Shader/ShaderIrMetaTex.cs

18 lines
458 B
C#
Raw Normal View History

namespace Ryujinx.Graphics.Gal.Shader
{
class ShaderIrMetaTex : ShaderIrMeta
{
2018-08-23 02:54:15 +00:00
public ShaderTextureType Type { get; private set; }
public ShaderIrNode Index { get; private set; }
public int Elem { get; private set; }
2018-08-23 02:54:15 +00:00
public ShaderIrMetaTex(ShaderTextureType Type, ShaderIrNode Index, int Elem)
{
2018-08-23 02:54:15 +00:00
this.Type = Type;
this.Index = Index;
this.Elem = Elem;
}
}
}