mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-07-12 21:13:12 +00:00
12 lines
171 B
C#
12 lines
171 B
C#
using System;
|
|
|
|
namespace Ryujinx.Graphics.OpenGL
|
|
{
|
|
public interface IOpenGLContext : IDisposable
|
|
{
|
|
void MakeCurrent();
|
|
|
|
bool HasContext();
|
|
}
|
|
}
|