mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-20 06:30:18 +00:00
16 lines
405 B
C#
16 lines
405 B
C#
using SPB.Graphics;
|
|
using System;
|
|
using System.Runtime.Versioning;
|
|
|
|
namespace Ryujinx.Ava.Ui.Controls
|
|
{
|
|
[SupportedOSPlatform("windows")]
|
|
internal class AvaloniaWglContext : SPB.Platform.WGL.WGLOpenGLContext
|
|
{
|
|
public AvaloniaWglContext(IntPtr handle)
|
|
: base(FramebufferFormat.Default, 0, 0, 0, false, null)
|
|
{
|
|
ContextHandle = handle;
|
|
}
|
|
}
|
|
}
|