mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-07-18 21:26:29 +02:00
12 lines
209 B
C#
12 lines
209 B
C#
using Ryujinx.Graphics.OpenGL.Helper;
|
|
using System;
|
|
|
|
namespace Ryujinx.Graphics.OpenGL
|
|
{
|
|
public interface IOpenGLContext : IDisposable
|
|
{
|
|
void MakeCurrent();
|
|
|
|
bool HasContext();
|
|
}
|
|
}
|