ShaderIrOperCbuf.cs 414 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. Index = index;
  11. Pos = pos;
  12. Offs = offs;
  13. }
  14. }
  15. }