0
0
Fork 0
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2024-10-20 03:21:40 +00:00
ryujinx-fork/Ryujinx.Graphics/Gal/Shader/ShaderIrOperAbuf.cs

15 lines
349 B
C#
Raw Normal View History

namespace Ryujinx.Graphics.Gal.Shader
{
class ShaderIrOperAbuf : ShaderIrNode
{
public int Offs { get; private set; }
public ShaderIrNode Vertex { get; private set; }
public ShaderIrOperAbuf(int Offs, ShaderIrNode Vertex)
{
this.Offs = Offs;
this.Vertex = Vertex;
}
}
}