20 lines
471 B
C#
20 lines
471 B
C#
|
using OpenTK;
|
||
|
using System;
|
||
|
|
||
|
namespace Ryujinx.Ava.Ui.Controls
|
||
|
{
|
||
|
public class OpenToolkitBindingsContext : IBindingsContext
|
||
|
{
|
||
|
private readonly Func<string, IntPtr> _getProcAddress;
|
||
|
|
||
|
public OpenToolkitBindingsContext(Func<string, IntPtr> getProcAddress)
|
||
|
{
|
||
|
_getProcAddress = getProcAddress;
|
||
|
}
|
||
|
|
||
|
public IntPtr GetProcAddress(string procName)
|
||
|
{
|
||
|
return _getProcAddress(procName);
|
||
|
}
|
||
|
}
|
||
|
}
|