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