mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-01-09 04:09:12 +00:00
13 lines
No EOL
351 B
C#
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;
|
|
}
|
|
}
|
|
} |