mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2024-11-17 14:57:08 +01:00
12 lines
232 B
C#
12 lines
232 B
C#
|
namespace Ryujinx.Graphics.Gal.Shader
|
||
|
{
|
||
|
class ShaderIrMetaTex : ShaderIrMeta
|
||
|
{
|
||
|
public int Elem { get; private set; }
|
||
|
|
||
|
public ShaderIrMetaTex(int Elem)
|
||
|
{
|
||
|
this.Elem = Elem;
|
||
|
}
|
||
|
}
|
||
|
}
|