mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 17:58:33 +00:00
15 lines
343 B
C#
15 lines
343 B
C#
|
namespace Ryujinx.Graphics.Gal.Shader
|
||
|
{
|
||
|
class ShaderIrMetaTexq : ShaderIrMeta
|
||
|
{
|
||
|
public ShaderTexqInfo Info { get; private set; }
|
||
|
|
||
|
public int Elem { get; private set; }
|
||
|
|
||
|
public ShaderIrMetaTexq(ShaderTexqInfo Info, int Elem)
|
||
|
{
|
||
|
this.Info = Info;
|
||
|
this.Elem = Elem;
|
||
|
}
|
||
|
}
|
||
|
}
|