2018-04-08 21:17:35 +02:00
|
|
|
namespace Ryujinx.Graphics.Gal.Shader
|
|
|
|
{
|
|
|
|
class ShaderIrOperCbuf : ShaderIrNode
|
|
|
|
{
|
|
|
|
public int Index { get; private set; }
|
2018-05-17 20:25:42 +02:00
|
|
|
public int Pos { get; set; }
|
2018-04-08 21:17:35 +02:00
|
|
|
|
2018-05-17 20:25:42 +02:00
|
|
|
public ShaderIrNode Offs { get; private set; }
|
|
|
|
|
|
|
|
public ShaderIrOperCbuf(int Index, int Pos, ShaderIrNode Offs = null)
|
2018-04-08 21:17:35 +02:00
|
|
|
{
|
|
|
|
this.Index = Index;
|
2018-05-17 20:25:42 +02:00
|
|
|
this.Pos = Pos;
|
2018-04-08 21:17:35 +02:00
|
|
|
this.Offs = Offs;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|