12 lines
171 B
C#
12 lines
171 B
C#
using System;
|
|
|
|
namespace Ryujinx.Graphics.OpenGL
|
|
{
|
|
public interface IOpenGLContext : IDisposable
|
|
{
|
|
void MakeCurrent();
|
|
|
|
bool HasContext();
|
|
}
|
|
}
|