aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Graphics.GAL/IProgram.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Ryujinx.Graphics.GAL/IProgram.cs')
-rw-r--r--src/Ryujinx.Graphics.GAL/IProgram.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/Ryujinx.Graphics.GAL/IProgram.cs b/src/Ryujinx.Graphics.GAL/IProgram.cs
new file mode 100644
index 00000000..272a2f7d
--- /dev/null
+++ b/src/Ryujinx.Graphics.GAL/IProgram.cs
@@ -0,0 +1,11 @@
+using System;
+
+namespace Ryujinx.Graphics.GAL
+{
+ public interface IProgram : IDisposable
+ {
+ ProgramLinkStatus CheckProgramLink(bool blocking);
+
+ byte[] GetBinary();
+ }
+}