IDeviceStateWithContext.cs 213 B

123456789
  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. }