IDeviceStateWithContext.cs
1 namespace Ryujinx.Graphics.Device 2 { 3 public interface IDeviceStateWithContext : IDeviceState 4 { 5 long CreateContext(); 6 void DestroyContext(long id); 7 void BindContext(long id); 8 } 9 }
1 namespace Ryujinx.Graphics.Device 2 { 3 public interface IDeviceStateWithContext : IDeviceState 4 { 5 long CreateContext(); 6 void DestroyContext(long id); 7 void BindContext(long id); 8 } 9 }