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