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

13 lines
No EOL
351 B
C#

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