mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-11-29 07:52:23 -05:00
Move solution and projects to src
This commit is contained in:
15
src/Ryujinx.Graphics.OpenGL/Helper/WGLHelper.cs
Normal file
15
src/Ryujinx.Graphics.OpenGL/Helper/WGLHelper.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
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 IntPtr GetCurrentContext();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user