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