mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-11-28 08:22:22 -05:00
15 lines
400 B
C#
15 lines
400 B
C#
using System.Runtime.InteropServices;
|
|
using System.Runtime.Versioning;
|
|
|
|
namespace Ryujinx.Graphics.OpenGL.Helper
|
|
{
|
|
[SupportedOSPlatform("windows")]
|
|
internal static partial class WGLHelper
|
|
{
|
|
private const string LibraryName = "OPENGL32.DLL";
|
|
|
|
[LibraryImport(LibraryName, EntryPoint = "wglGetCurrentContext")]
|
|
public static partial nint GetCurrentContext();
|
|
}
|
|
}
|