ShaderIrOperCbuf.cs 429 B

1234567891011121314151617
  1. namespace Ryujinx.Graphics.Gal.Shader
  2. {
  3. class ShaderIrOperCbuf : ShaderIrNode
  4. {
  5. public int Index { get; private set; }
  6. public int Pos { get; set; }
  7. public ShaderIrNode Offs { get; private set; }
  8. public ShaderIrOperCbuf(int Index, int Pos, ShaderIrNode Offs = null)
  9. {
  10. this.Index = Index;
  11. this.Pos = Pos;
  12. this.Offs = Offs;
  13. }
  14. }
  15. }