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

12 lines
No EOL
232 B
C#

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