Ryujinx/Ryujinx.Graphics/Gal/Shader/ShaderIrMetaTexq.cs

13 lines
351 B
C#
Raw Normal View History

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