IProgram.cs 194 B

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