/ src / Ryujinx.Graphics.GAL / IProgram.cs
IProgram.cs
 1  using System;
 2  
 3  namespace Ryujinx.Graphics.GAL
 4  {
 5      public interface IProgram : IDisposable
 6      {
 7          ProgramLinkStatus CheckProgramLink(bool blocking);
 8  
 9          byte[] GetBinary();
10      }
11  }