mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2024-10-02 16:50:20 -07:00
17 lines
401 B
C#
17 lines
401 B
C#
![]() |
using SPB.Graphics;
|
|||
|
using System;
|
|||
|
using System.Runtime.Versioning;
|
|||
|
|
|||
|
namespace Ryujinx.Ava.Ui.Controls
|
|||
|
{
|
|||
|
[SupportedOSPlatform("linux")]
|
|||
|
public class AvaloniaGlxContext : SPB.Platform.GLX.GLXOpenGLContext
|
|||
|
{
|
|||
|
public AvaloniaGlxContext(IntPtr handle)
|
|||
|
: base(FramebufferFormat.Default, 0, 0, 0, false, null)
|
|||
|
{
|
|||
|
ContextHandle = handle;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|