mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-01-09 20:29:11 +00:00
18 lines
No EOL
458 B
C#
18 lines
No EOL
458 B
C#
namespace Ryujinx.Graphics.Gal.Shader
|
|
{
|
|
class ShaderIrMetaTex : ShaderIrMeta
|
|
{
|
|
public ShaderTextureType Type { get; private set; }
|
|
|
|
public ShaderIrNode Index { get; private set; }
|
|
|
|
public int Elem { get; private set; }
|
|
|
|
public ShaderIrMetaTex(ShaderTextureType Type, ShaderIrNode Index, int Elem)
|
|
{
|
|
this.Type = Type;
|
|
this.Index = Index;
|
|
this.Elem = Elem;
|
|
}
|
|
}
|
|
} |