aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Device/IDeviceStateWithContext.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Graphics.Device/IDeviceStateWithContext.cs')
-rw-r--r--Ryujinx.Graphics.Device/IDeviceStateWithContext.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/Ryujinx.Graphics.Device/IDeviceStateWithContext.cs b/Ryujinx.Graphics.Device/IDeviceStateWithContext.cs
new file mode 100644
index 00000000..17b2fa21
--- /dev/null
+++ b/Ryujinx.Graphics.Device/IDeviceStateWithContext.cs
@@ -0,0 +1,9 @@
+namespace Ryujinx.Graphics.Device
+{
+ public interface IDeviceStateWithContext : IDeviceState
+ {
+ long CreateContext();
+ void DestroyContext(long id);
+ void BindContext(long id);
+ }
+}