mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2026-03-19 06:27:28 +00:00
11 lines
171 B
C#
11 lines
171 B
C#
using System;
|
|
|
|
namespace Ryujinx.Graphics.OpenGL
|
|
{
|
|
public interface IOpenGLContext : IDisposable
|
|
{
|
|
void MakeCurrent();
|
|
|
|
bool HasContext();
|
|
}
|
|
}
|