blob: 525418d74f802771fc5c9ac3f003ae237ef7fe19 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
using Ryujinx.Graphics.OpenGL.Helper;
using System;
namespace Ryujinx.Graphics.OpenGL
{
public interface IOpenGLContext : IDisposable
{
void MakeCurrent();
bool HasContext();
}
}
|