GithubHelp home page GithubHelp logo

Comments (5)

ForeverZer0 avatar ForeverZer0 commented on August 26, 2024

Would you be able to provide any more information about this? I am not familiar with the other library/tool you are using to do the AOT-compiling, how it works, etc, nor the context in which this error occurs. A full stack-trace, explanation of how/when it occurs, or even code example would be very helpful.

from glfw-net.

Terjokan avatar Terjokan commented on August 26, 2024

Aot compiling transforms the c# code into native code(for higher performance and smaller file size), the feture is embedet in dot net and can be used like that in vs:
csproj file in visual studio

<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PublishAot>true</PublishAot>
</PropertyGroup>

</Project>

documentation:
https://learn.microsoft.com/en-us/dotnet/core/deploying/native-aot/?tabs=net7%2Cwindows

i have a simple implementation that worked with iot from https://github.com/witcherofthorns/csharp-glfw-imgui/tree/master

`
public unsafe static class GLFW
{
private const string LibWindows = "glfw3.dll";
private const string LibLinux = "libglfw.so.3.3";
private static readonly nint NativeLibrary = GetNativeLibrary();

private static nint GetNativeLibrary()
{
    return NativeFuncExecuturer.LoadLibraryExt(RuntimeInformation.IsOSPlatform(OSPlatform.Windows)
        ? LibWindows
        : LibLinux);
}

public const int GLFW_VERSION_MAJOR = 3;
public const int GLFW_VERSION_MINOR = 3;
public const int GLFW_VERSION_REVISION = 4;
public const int GLFW_TRUE = 1;
public const int GLFW_FALSE = 0;
public const int GLFW_RELEASE = 0;
public const int GLFW_PRESS = 1;
public const int GLFW_REPEAT = 2;
public const int GLFW_HAT_CENTERED = 0;
public const int GLFW_HAT_UP = 1;
public const int GLFW_HAT_RIGHT = 2;
public const int GLFW_HAT_DOWN = 4;
public const int GLFW_HAT_LEFT = 8;
public const int GLFW_HAT_RIGHT_UP = GLFW_HAT_RIGHT | GLFW_HAT_UP;
public const int GLFW_HAT_RIGHT_DOWN = GLFW_HAT_RIGHT | GLFW_HAT_DOWN;
public const int GLFW_HAT_LEFT_UP = GLFW_HAT_LEFT | GLFW_HAT_UP;
public const int GLFW_HAT_LEFT_DOWN = GLFW_HAT_LEFT | GLFW_HAT_DOWN;
public const int GLFW_KEY_UNKNOWN = -1;
public const int GLFW_KEY_SPACE = 32;
public const int GLFW_KEY_APOSTROPHE = 39;
public const int GLFW_KEY_COMMA = 44;
public const int GLFW_KEY_MINUS = 45;
public const int GLFW_KEY_PERIOD = 46;
public const int GLFW_KEY_SLASH = 47;
public const int GLFW_KEY_0 = 48;
public const int GLFW_KEY_1 = 49;
public const int GLFW_KEY_2 = 50;
public const int GLFW_KEY_3 = 51;
public const int GLFW_KEY_4 = 52;
public const int GLFW_KEY_5 = 53;
public const int GLFW_KEY_6 = 54;
public const int GLFW_KEY_7 = 55;
public const int GLFW_KEY_8 = 56;
public const int GLFW_KEY_9 = 57;
public const int GLFW_KEY_SEMICOLON = 59;
public const int GLFW_KEY_EQUAL = 61;
public const int GLFW_KEY_A = 65;
public const int GLFW_KEY_B = 66;
public const int GLFW_KEY_C = 67;
public const int GLFW_KEY_D = 68;
public const int GLFW_KEY_E = 69;
public const int GLFW_KEY_F = 70;
public const int GLFW_KEY_G = 71;
public const int GLFW_KEY_H = 72;
public const int GLFW_KEY_I = 73;
public const int GLFW_KEY_J = 74;
public const int GLFW_KEY_K = 75;
public const int GLFW_KEY_L = 76;
public const int GLFW_KEY_M = 77;
public const int GLFW_KEY_N = 78;
public const int GLFW_KEY_O = 79;
public const int GLFW_KEY_P = 80;
public const int GLFW_KEY_Q = 81;
public const int GLFW_KEY_R = 82;
public const int GLFW_KEY_S = 83;
public const int GLFW_KEY_T = 84;
public const int GLFW_KEY_U = 85;
public const int GLFW_KEY_V = 86;
public const int GLFW_KEY_W = 87;
public const int GLFW_KEY_X = 88;
public const int GLFW_KEY_Y = 89;
public const int GLFW_KEY_Z = 90;
public const int GLFW_KEY_LEFT_BRACKET = 91;
public const int GLFW_KEY_BACKSLASH = 92;
public const int GLFW_KEY_RIGHT_BRACKET = 93;
public const int GLFW_KEY_GRAVE_ACCENT = 96;
public const int GLFW_KEY_WORLD_1 = 161;
public const int GLFW_KEY_WORLD_2 = 162;
public const int GLFW_KEY_ESCAPE = 256;
public const int GLFW_KEY_ENTER = 257;
public const int GLFW_KEY_TAB = 258;
public const int GLFW_KEY_BACKSPACE = 259;
public const int GLFW_KEY_INSERT = 260;
public const int GLFW_KEY_DELETE = 261;
public const int GLFW_KEY_RIGHT = 262;
public const int GLFW_KEY_LEFT = 263;
public const int GLFW_KEY_DOWN = 264;
public const int GLFW_KEY_UP = 265;
public const int GLFW_KEY_PAGE_UP = 266;
public const int GLFW_KEY_PAGE_DOWN = 267;
public const int GLFW_KEY_HOME = 268;
public const int GLFW_KEY_END = 269;
public const int GLFW_KEY_CAPS_LOCK = 280;
public const int GLFW_KEY_SCROLL_LOCK = 281;
public const int GLFW_KEY_NUM_LOCK = 282;
public const int GLFW_KEY_PRINT_SCREEN = 283;
public const int GLFW_KEY_PAUSE = 284;
public const int GLFW_KEY_F1 = 290;
public const int GLFW_KEY_F2 = 291;
public const int GLFW_KEY_F3 = 292;
public const int GLFW_KEY_F4 = 293;
public const int GLFW_KEY_F5 = 294;
public const int GLFW_KEY_F6 = 295;
public const int GLFW_KEY_F7 = 296;
public const int GLFW_KEY_F8 = 297;
public const int GLFW_KEY_F9 = 298;
public const int GLFW_KEY_F10 = 299;
public const int GLFW_KEY_F11 = 300;
public const int GLFW_KEY_F12 = 301;
public const int GLFW_KEY_F13 = 302;
public const int GLFW_KEY_F14 = 303;
public const int GLFW_KEY_F15 = 304;
public const int GLFW_KEY_F16 = 305;
public const int GLFW_KEY_F17 = 306;
public const int GLFW_KEY_F18 = 307;
public const int GLFW_KEY_F19 = 308;
public const int GLFW_KEY_F20 = 309;
public const int GLFW_KEY_F21 = 310;
public const int GLFW_KEY_F22 = 311;
public const int GLFW_KEY_F23 = 312;
public const int GLFW_KEY_F24 = 313;
public const int GLFW_KEY_F25 = 314;
public const int GLFW_KEY_KP_0 = 320;
public const int GLFW_KEY_KP_1 = 321;
public const int GLFW_KEY_KP_2 = 322;
public const int GLFW_KEY_KP_3 = 323;
public const int GLFW_KEY_KP_4 = 324;
public const int GLFW_KEY_KP_5 = 325;
public const int GLFW_KEY_KP_6 = 326;
public const int GLFW_KEY_KP_7 = 327;
public const int GLFW_KEY_KP_8 = 328;
public const int GLFW_KEY_KP_9 = 329;
public const int GLFW_KEY_KP_DECIMAL = 330;
public const int GLFW_KEY_KP_DIVIDE = 331;
public const int GLFW_KEY_KP_MULTIPLY = 332;
public const int GLFW_KEY_KP_SUBTRACT = 333;
public const int GLFW_KEY_KP_ADD = 334;
public const int GLFW_KEY_KP_ENTER = 335;
public const int GLFW_KEY_KP_EQUAL = 336;
public const int GLFW_KEY_LEFT_SHIFT = 340;
public const int GLFW_KEY_LEFT_CONTROL = 341;
public const int GLFW_KEY_LEFT_ALT = 342;
public const int GLFW_KEY_LEFT_SUPER = 343;
public const int GLFW_KEY_RIGHT_SHIFT = 344;
public const int GLFW_KEY_RIGHT_CONTROL = 345;
public const int GLFW_KEY_RIGHT_ALT = 346;
public const int GLFW_KEY_RIGHT_SUPER = 347;
public const int GLFW_KEY_MENU = 348;
public const int GLFW_KEY_LAST = GLFW_KEY_MENU;
public const int GLFW_MOD_SHIFT = 0x0001;
public const int GLFW_MOD_CONTROL = 0x0002;
public const int GLFW_MOD_ALT = 0x0004;
public const int GLFW_MOD_SUPER = 0x0008;
public const int GLFW_MOD_CAPS_LOCK = 0x0010;
public const int GLFW_MOD_NUM_LOCK = 0x0020;
public const int GLFW_MOUSE_BUTTON_1 = 0;
public const int GLFW_MOUSE_BUTTON_2 = 1;
public const int GLFW_MOUSE_BUTTON_3 = 2;
public const int GLFW_MOUSE_BUTTON_4 = 3;
public const int GLFW_MOUSE_BUTTON_5 = 4;
public const int GLFW_MOUSE_BUTTON_6 = 5;
public const int GLFW_MOUSE_BUTTON_7 = 6;
public const int GLFW_MOUSE_BUTTON_8 = 7;
public const int GLFW_MOUSE_BUTTON_LAST = GLFW_MOUSE_BUTTON_8;
public const int GLFW_MOUSE_BUTTON_LEFT = GLFW_MOUSE_BUTTON_1;
public const int GLFW_MOUSE_BUTTON_RIGHT = GLFW_MOUSE_BUTTON_2;
public const int GLFW_MOUSE_BUTTON_MIDDLE = GLFW_MOUSE_BUTTON_3;
public const int GLFW_JOYSTICK_1 = 0;
public const int GLFW_JOYSTICK_2 = 1;
public const int GLFW_JOYSTICK_3 = 2;
public const int GLFW_JOYSTICK_4 = 3;
public const int GLFW_JOYSTICK_5 = 4;
public const int GLFW_JOYSTICK_6 = 5;
public const int GLFW_JOYSTICK_7 = 6;
public const int GLFW_JOYSTICK_8 = 7;
public const int GLFW_JOYSTICK_9 = 8;
public const int GLFW_JOYSTICK_10 = 9;
public const int GLFW_JOYSTICK_11 = 10;
public const int GLFW_JOYSTICK_12 = 11;
public const int GLFW_JOYSTICK_13 = 12;
public const int GLFW_JOYSTICK_14 = 13;
public const int GLFW_JOYSTICK_15 = 14;
public const int GLFW_JOYSTICK_16 = 15;
public const int GLFW_JOYSTICK_LAST = GLFW_JOYSTICK_16;
public const int GLFW_GAMEPAD_BUTTON_A = 0;
public const int GLFW_GAMEPAD_BUTTON_B = 1;
public const int GLFW_GAMEPAD_BUTTON_X = 2;
public const int GLFW_GAMEPAD_BUTTON_Y = 3;
public const int GLFW_GAMEPAD_BUTTON_LEFT_BUMPER = 4;
public const int GLFW_GAMEPAD_BUTTON_RIGHT_BUMPER = 5;
public const int GLFW_GAMEPAD_BUTTON_BACK = 6;
public const int GLFW_GAMEPAD_BUTTON_START = 7;
public const int GLFW_GAMEPAD_BUTTON_GUIDE = 8;
public const int GLFW_GAMEPAD_BUTTON_LEFT_THUMB = 9;
public const int GLFW_GAMEPAD_BUTTON_RIGHT_THUMB = 10;
public const int GLFW_GAMEPAD_BUTTON_DPAD_UP = 11;
public const int GLFW_GAMEPAD_BUTTON_DPAD_RIGHT = 12;
public const int GLFW_GAMEPAD_BUTTON_DPAD_DOWN = 13;
public const int GLFW_GAMEPAD_BUTTON_DPAD_LEFT = 14;
public const int GLFW_GAMEPAD_BUTTON_LAST = GLFW_GAMEPAD_BUTTON_DPAD_LEFT;
public const int GLFW_GAMEPAD_BUTTON_CROSS = GLFW_GAMEPAD_BUTTON_A;
public const int GLFW_GAMEPAD_BUTTON_CIRCLE = GLFW_GAMEPAD_BUTTON_B;
public const int GLFW_GAMEPAD_BUTTON_SQUARE = GLFW_GAMEPAD_BUTTON_X;
public const int GLFW_GAMEPAD_BUTTON_TRIANGLE = GLFW_GAMEPAD_BUTTON_Y;
public const int GLFW_GAMEPAD_AXIS_LEFT_X = 0;
public const int GLFW_GAMEPAD_AXIS_LEFT_Y = 1;
public const int GLFW_GAMEPAD_AXIS_RIGHT_X = 2;
public const int GLFW_GAMEPAD_AXIS_RIGHT_Y = 3;
public const int GLFW_GAMEPAD_AXIS_LEFT_TRIGGER = 4;
public const int GLFW_GAMEPAD_AXIS_RIGHT_TRIGGER = 5;
public const int GLFW_GAMEPAD_AXIS_LAST = GLFW_GAMEPAD_AXIS_RIGHT_TRIGGER;
public const int GLFW_NO_ERROR = 0;
public const int GLFW_NOT_INITIALIZED = 0x00010001;
public const int GLFW_NO_CURRENT_CONTEXT = 0x00010002;
public const int GLFW_INVALID_ENUM = 0x00010003;
public const int GLFW_INVALID_VALUE = 0x00010004;
public const int GLFW_OUT_OF_MEMORY = 0x00010005;
public const int GLFW_API_UNAVAILABLE = 0x00010006;
public const int GLFW_VERSION_UNAVAILABLE = 0x00010007;
public const int GLFW_PLATFORM_ERROR = 0x00010008;
public const int GLFW_FORMAT_UNAVAILABLE = 0x00010009;
public const int GLFW_NO_WINDOW_CONTEXT = 0x0001000A;
public const int GLFW_FOCUSED = 0x00020001;
public const int GLFW_ICONIFIED = 0x00020002;
public const int GLFW_RESIZABLE = 0x00020003;
public const int GLFW_VISIBLE = 0x00020004;
public const int GLFW_DECORATED = 0x00020005;
public const int GLFW_AUTO_ICONIFY = 0x00020006;
public const int GLFW_FLOATING = 0x00020007;
public const int GLFW_MAXIMIZED = 0x00020008;
public const int GLFW_CENTER_CURSOR = 0x00020009;
public const int GLFW_TRANSPARENT_FRAMEBUFFER = 0x0002000A;
public const int GLFW_HOVERED = 0x0002000B;
public const int GLFW_FOCUS_ON_SHOW = 0x0002000C;
public const int GLFW_RED_BITS = 0x00021001;
public const int GLFW_GREEN_BITS = 0x00021002;
public const int GLFW_BLUE_BITS = 0x00021003;
public const int GLFW_ALPHA_BITS = 0x00021004;
public const int GLFW_DEPTH_BITS = 0x00021005;
public const int GLFW_STENCIL_BITS = 0x00021006;
public const int GLFW_ACCUM_RED_BITS = 0x00021007;
public const int GLFW_ACCUM_GREEN_BITS = 0x00021008;
public const int GLFW_ACCUM_BLUE_BITS = 0x00021009;
public const int GLFW_ACCUM_ALPHA_BITS = 0x0002100A;
public const int GLFW_AUX_BUFFERS = 0x0002100B;
public const int GLFW_STEREO = 0x0002100C;
public const int GLFW_SAMPLES = 0x0002100D;
public const int GLFW_SRGB_CAPABLE = 0x0002100E;
public const int GLFW_REFRESH_RATE = 0x0002100F;
public const int GLFW_DOUBLEBUFFER = 0x00021010;
public const int GLFW_CLIENT_API = 0x00022001;
public const int GLFW_CONTEXT_VERSION_MAJOR = 0x00022002;
public const int GLFW_CONTEXT_VERSION_MINOR = 0x00022003;
public const int GLFW_CONTEXT_REVISION = 0x00022004;
public const int GLFW_CONTEXT_ROBUSTNESS = 0x00022005;
public const int GLFW_OPENGL_FORWARD_COMPAT = 0x00022006;
public const int GLFW_OPENGL_DEBUG_CONTEXT = 0x00022007;
public const int GLFW_OPENGL_PROFILE = 0x00022008;
public const int GLFW_CONTEXT_RELEASE_BEHAVIOR = 0x00022009;
public const int GLFW_CONTEXT_NO_ERROR = 0x0002200A;
public const int GLFW_CONTEXT_CREATION_API = 0x0002200B;
public const int GLFW_SCALE_TO_MONITOR = 0x0002200C;
public const int GLFW_COCOA_RETINA_FRAMEBUFFER = 0x00023001;
public const int GLFW_COCOA_FRAME_NAME = 0x00023002;
public const int GLFW_COCOA_GRAPHICS_SWITCHING = 0x00023003;
public const int GLFW_X11_CLASS_NAME = 0x00024001;
public const int GLFW_X11_INSTANCE_NAME = 0x00024002;
public const int GLFW_NO_API = 0;
public const int GLFW_OPENGL_API = 0x00030001;
public const int GLFW_OPENGL_ES_API = 0x00030002;
public const int GLFW_NO_ROBUSTNESS = 0;
public const int GLFW_NO_RESET_NOTIFICATION = 0x00031001;
public const int GLFW_LOSE_CONTEXT_ON_RESET = 0x00031002;
public const int GLFW_OPENGL_ANY_PROFILE = 0;
public const int GLFW_OPENGL_CORE_PROFILE = 0x00032001;
public const int GLFW_OPENGL_COMPAT_PROFILE = 0x00032002;
public const int GLFW_CURSOR = 0x00033001;
public const int GLFW_STICKY_KEYS = 0x00033002;
public const int GLFW_STICKY_MOUSE_BUTTONS = 0x00033003;
public const int GLFW_LOCK_KEY_MODS = 0x00033004;
public const int GLFW_RAW_MOUSE_MOTION = 0x00033005;
public const int GLFW_CURSOR_NORMAL = 0x00034001;
public const int GLFW_CURSOR_HIDDEN = 0x00034002;
public const int GLFW_CURSOR_DISABLED = 0x00034003;
public const int GLFW_ANY_RELEASE_BEHAVIOR = 0;
public const int GLFW_RELEASE_BEHAVIOR_FLUSH = 0x00035001;
public const int GLFW_RELEASE_BEHAVIOR_NONE = 0x00035002;
public const int GLFW_NATIVE_CONTEXT_API = 0x00036001;
public const int GLFW_EGL_CONTEXT_API = 0x00036002;
public const int GLFW_OSMESA_CONTEXT_API = 0x00036003;
public const int GLFW_ARROW_CURSOR = 0x00036001;
public const int GLFW_IBEAM_CURSOR = 0x00036002;
public const int GLFW_CROSSHAIR_CURSOR = 0x00036003;
public const int GLFW_HAND_CURSOR = 0x00036004;
public const int GLFW_HRESIZE_CURSOR = 0x00036005;
public const int GLFW_VRESIZE_CURSOR = 0x00036006;
public const int GLFW_CONNECTED = 0x00040001;
public const int GLFW_DISCONNECTED = 0x00040002;
public const int GLFW_JOYSTICK_HAT_BUTTONS = 0x00050001;
public const int GLFW_COCOA_CHDIR_RESOURCES = 0x00051001;
public const int GLFW_COCOA_MENUBAR = 0x00051002;

public struct GLFWvidmode
{
    public int width;
    public int height;
    public int redBits;
    public int greenBits;
    public int blueBits;
    public int refreshRate;
}

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
public delegate void GLFWerrorfun(int errorcode, string description);
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
public delegate void GLFWwindowposfun(nint window, int posx, int posy);
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
public delegate void GLFWwindowsizefun(nint window, int width, int height);
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
public delegate void GLFWwindowclosefun(nint window);
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
public delegate void GLFWwindowrefreshfun(nint window);
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
public delegate void GLFWwindowfocusfun(nint window, int focused);
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
public delegate void GLFWwindowiconifyfun(nint window, int iconified);
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
public delegate void GLFWwindowmaximizefun(nint window, int maximized);
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
public delegate void GLFWframebuffersizefun(nint window, int width, int height);
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
public delegate void GLFWwindowcontentscalefun(nint window, float xscale, float yscale);
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
public delegate void GLFWmousebuttonfun(nint window, int button, int action, int mods);
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
public delegate void GLFWcursorposfun(nint window, double mousex, double mousey);
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
public delegate void GLFWcursorenterfun(nint window, int entered);
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
public delegate void GLFWscrollfun(nint window, double xoffset, double yoffset);
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
public delegate void GLFWkeyfun(nint window, int key, int scancode, int action, int mods);
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
public delegate void GLFWcharfun(nint window, uint codepoint);
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
public delegate void GLFWcharmodsfun(nint window, int codepoint, int mods);
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
public delegate void GLFWdropfun(nint window, int count, string[] paths);
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
public delegate void GLFWmonitorfun(nint window, int monitorevent);
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
public delegate void GLFWjoystickfun(int jid, int ev);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate void** glfwGetMonitorsDelegate(out int count);
private static glfwGetMonitorsDelegate _glfwGetMonitors = NativeFuncExecuturer.LoadFunction<glfwGetMonitorsDelegate>(NativeLibrary, "glfwGetMonitors");
public static nint[] glfwGetMonitors(out int count)
{
    var monitors = _glfwGetMonitors(out count);
    var ret = new nint[count];
    for (var i = 0; i < count; i++)
        ret[i] = (nint)monitors[i];
    return ret;
}

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate nint glfwGetVideoModeDelegate(nint monitor);
private static glfwGetVideoModeDelegate _glfwGetVideoMode = NativeFuncExecuturer.LoadFunction<glfwGetVideoModeDelegate>(NativeLibrary, "glfwGetVideoMode");
public static GLFWvidmode glfwGetVideoMode(nint monitor) => Marshal.PtrToStructure<GLFWvidmode>(_glfwGetVideoMode(monitor));

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate int glfwInitDelegate();
private static glfwInitDelegate _glfwInit = NativeFuncExecuturer.LoadFunction<glfwInitDelegate>(NativeLibrary, "glfwInit");
public static int glfwInit() => _glfwInit();

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate void glfwTerminateDelegate();
private static glfwTerminateDelegate _glfwTerminate = NativeFuncExecuturer.LoadFunction<glfwTerminateDelegate>(NativeLibrary, "glfwTerminate");
public static void glfwTerminate() => _glfwTerminate();

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate void glfwInitHintDelegate(int hint, int value);
private static glfwInitHintDelegate _glfwInitHint = NativeFuncExecuturer.LoadFunction<glfwInitHintDelegate>(NativeLibrary, "glfwInitHint");
public static void glfwInitHint(int hint, int value) => _glfwInitHint(hint, value);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate void glfwGetVersionDelegate(out int major, out int minor, out int rev);
private static glfwGetVersionDelegate _glfwGetVersion = NativeFuncExecuturer.LoadFunction<glfwGetVersionDelegate>(NativeLibrary, "glfwGetVersion");
public static void glfwGetVersion(out int major, out int minor, out int rev) => _glfwGetVersion(out major, out minor, out rev);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate string glfwGetVersionStringDelegate();
private static glfwGetVersionStringDelegate _glfwGetVersionString = NativeFuncExecuturer.LoadFunction<glfwGetVersionStringDelegate>(NativeLibrary, "glfwGetVersionString");
public static string glfwGetVersionString() => _glfwGetVersionString();

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate int glfwGetErrorDelegate(out string description);
private static glfwGetErrorDelegate _glfwGetError = NativeFuncExecuturer.LoadFunction<glfwGetErrorDelegate>(NativeLibrary, "glfwGetError");
public static int glfwGetError(out string description) => _glfwGetError(out description);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate GLFWerrorfun glfwSetErrorCallbackDelegate(GLFWerrorfun callback);
private static glfwSetErrorCallbackDelegate _glfwSetErrorCallback = NativeFuncExecuturer.LoadFunction<glfwSetErrorCallbackDelegate>(NativeLibrary, "glfwSetErrorCallback");
public static GLFWerrorfun glfwSetErrorCallback(GLFWerrorfun callback) => _glfwSetErrorCallback(callback);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate nint glfwGetPrimaryMonitorDelegate();
private static glfwGetPrimaryMonitorDelegate _glfwGetPrimaryMonitor = NativeFuncExecuturer.LoadFunction<glfwGetPrimaryMonitorDelegate>(NativeLibrary, "glfwGetPrimaryMonitor");
public static nint glfwGetPrimaryMonitor() => _glfwGetPrimaryMonitor();

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate void glfwGetMonitorPosDelegate(nint monitor, out int xpos, out int ypos);
private static glfwGetMonitorPosDelegate _glfwGetMonitorPos = NativeFuncExecuturer.LoadFunction<glfwGetMonitorPosDelegate>(NativeLibrary, "glfwGetMonitorPos");
public static void glfwGetMonitorPos(nint monitor, out int xpos, out int ypos) => _glfwGetMonitorPos(monitor, out xpos, out ypos);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate void glfwGetMonitorWorkareaDelegate(nint monitor, out int xpos, out int ypos, out int width, out int height);
private static glfwGetMonitorWorkareaDelegate _glfwGetMonitorWorkarea = NativeFuncExecuturer.LoadFunction<glfwGetMonitorWorkareaDelegate>(NativeLibrary, "glfwGetMonitorWorkarea");
public static void glfwGetMonitorWorkarea(nint monitor, out int xpos, out int ypos, out int width, out int height) => _glfwGetMonitorWorkarea(monitor, out xpos, out ypos, out width, out height);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate void glfwGetMonitorPhysicalSizeDelegate(nint monitor, out int widthMM, out int heightMM);
private static glfwGetMonitorPhysicalSizeDelegate _glfwGetMonitorPhysicalSize = NativeFuncExecuturer.LoadFunction<glfwGetMonitorPhysicalSizeDelegate>(NativeLibrary, "glfwGetMonitorPhysicalSize");
public static void glfwGetMonitorPhysicalSize(nint monitor, out int widthMM, out int heightMM) => _glfwGetMonitorPhysicalSize(monitor, out widthMM, out heightMM);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate void glfwGetMonitorContentScaleDelegate(nint monitor, out float xscale, out float yscale);
private static glfwGetMonitorContentScaleDelegate _glfwGetMonitorContentScale = NativeFuncExecuturer.LoadFunction<glfwGetMonitorContentScaleDelegate>(NativeLibrary, "glfwGetMonitorContentScale");
public static void glfwGetMonitorContentScale(nint monitor, out float xscale, out float yscale) => _glfwGetMonitorContentScale(monitor, out xscale, out yscale);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate string glfwGetMonitorNameDelegate(nint monitor);
private static glfwGetMonitorNameDelegate _glfwGetMonitorName = NativeFuncExecuturer.LoadFunction<glfwGetMonitorNameDelegate>(NativeLibrary, "glfwGetMonitorName");
public static string glfwGetMonitorName(nint monitor) => _glfwGetMonitorName(monitor);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate void glfwSetMonitorUserPointerDelegate(nint monitor, nint pointer);
private static glfwSetMonitorUserPointerDelegate _glfwSetMonitorUserPointer = NativeFuncExecuturer.LoadFunction<glfwSetMonitorUserPointerDelegate>(NativeLibrary, "glfwSetMonitorUserPointer");
public static void glfwSetMonitorUserPointer(nint monitor, nint pointer) => _glfwSetMonitorUserPointer(monitor, pointer);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate nint glfwGetMonitorUserPointerDelegate(nint monitor);
private static glfwGetMonitorUserPointerDelegate _glfwGetMonitorUserPointer = NativeFuncExecuturer.LoadFunction<glfwGetMonitorUserPointerDelegate>(NativeLibrary, "glfwGetMonitorUserPointer");
public static nint glfwGetMonitorUserPointer(nint monitor) => _glfwGetMonitorUserPointer(monitor);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate GLFWmonitorfun glfwSetMonitorCallbackDelegate(GLFWmonitorfun callback);
private static glfwSetMonitorCallbackDelegate _glfwSetMonitorCallback = NativeFuncExecuturer.LoadFunction<glfwSetMonitorCallbackDelegate>(NativeLibrary, "glfwSetMonitorCallback");
public static GLFWmonitorfun glfwSetMonitorCallback(GLFWmonitorfun callback) => _glfwSetMonitorCallback(callback);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate nint glfwGetVideoModesDelegate(nint monitor, out int count);
private static glfwGetVideoModesDelegate _glfwGetVideoModes = NativeFuncExecuturer.LoadFunction<glfwGetVideoModesDelegate>(NativeLibrary, "glfwGetVideoModes");
public static nint glfwGetVideoModes(nint monitor, out int count) => _glfwGetVideoModes(monitor, out count);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate void glfwSetGammaDelegate(nint monitor, float gamma);
private static glfwSetGammaDelegate _glfwSetGamma = NativeFuncExecuturer.LoadFunction<glfwSetGammaDelegate>(NativeLibrary, "glfwSetGamma");
public static void glfwSetGamma(nint monitor, float gamma) => _glfwSetGamma(monitor, gamma);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate nint glfwGetGammaRampDelegate(nint monitor);
private static glfwGetGammaRampDelegate _glfwGetGammaRamp = NativeFuncExecuturer.LoadFunction<glfwGetGammaRampDelegate>(NativeLibrary, "glfwGetGammaRamp");
public static nint glfwGetGammaRamp(nint monitor) => _glfwGetGammaRamp(monitor);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate void glfwSetGammaRampDelegate(nint monitor, nint ramp);
private static glfwSetGammaRampDelegate _glfwSetGammaRamp = NativeFuncExecuturer.LoadFunction<glfwSetGammaRampDelegate>(NativeLibrary, "glfwSetGammaRamp");
public static void glfwSetGammaRamp(nint monitor, nint ramp) => _glfwSetGammaRamp(monitor, ramp);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate void glfwDefaultWindowHintsDelegate();
private static glfwDefaultWindowHintsDelegate _glfwDefaultWindowHints = NativeFuncExecuturer.LoadFunction<glfwDefaultWindowHintsDelegate>(NativeLibrary, "glfwDefaultWindowHints");
public static void glfwDefaultWindowHints() => _glfwDefaultWindowHints();

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate void glfwWindowHintDelegate(int hint, int value);
private static glfwWindowHintDelegate _glfwWindowHint = NativeFuncExecuturer.LoadFunction<glfwWindowHintDelegate>(NativeLibrary, "glfwWindowHint");
public static void glfwWindowHint(int hint, int value) => _glfwWindowHint(hint, value);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate void glfwWindowHintStringDelegate(int hint, string value);
private static glfwWindowHintStringDelegate _glfwWindowHintString = NativeFuncExecuturer.LoadFunction<glfwWindowHintStringDelegate>(NativeLibrary, "glfwWindowHintString");
public static void glfwWindowHintString(int hint, string value) => _glfwWindowHintString(hint, value);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate nint glfwCreateWindowDelegate(int width, int height, string title, nint monitor, nint share);
private static glfwCreateWindowDelegate _glfwCreateWindow = NativeFuncExecuturer.LoadFunction<glfwCreateWindowDelegate>(NativeLibrary, "glfwCreateWindow");
public static nint glfwCreateWindow(int width, int height, string title, nint monitor, nint share) => _glfwCreateWindow(width, height, title, monitor, share);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate void glfwDestroyWindowDelegate(nint window);
private static glfwDestroyWindowDelegate _glfwDestroyWindow = NativeFuncExecuturer.LoadFunction<glfwDestroyWindowDelegate>(NativeLibrary, "glfwDestroyWindow");
public static void glfwDestroyWindow(nint window) => _glfwDestroyWindow(window);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate int glfwWindowShouldCloseDelegate(nint window);
private static glfwWindowShouldCloseDelegate _glfwWindowShouldClose = NativeFuncExecuturer.LoadFunction<glfwWindowShouldCloseDelegate>(NativeLibrary, "glfwWindowShouldClose");
public static int glfwWindowShouldClose(nint window) => _glfwWindowShouldClose(window);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate void glfwSetWindowShouldCloseDelegate(nint window, int value);
private static glfwSetWindowShouldCloseDelegate _glfwSetWindowShouldClose = NativeFuncExecuturer.LoadFunction<glfwSetWindowShouldCloseDelegate>(NativeLibrary, "glfwSetWindowShouldClose");
public static void glfwSetWindowShouldClose(nint window, int value) => _glfwSetWindowShouldClose(window, value);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate void glfwSetWindowTitleDelegate(nint window, string title);
private static glfwSetWindowTitleDelegate _glfwSetWindowTitle = NativeFuncExecuturer.LoadFunction<glfwSetWindowTitleDelegate>(NativeLibrary, "glfwSetWindowTitle");
public static void glfwSetWindowTitle(nint window, string title) => _glfwSetWindowTitle(window, title);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate void glfwSetWindowIconDelegate(nint window, int count, nint images);
private static glfwSetWindowIconDelegate _glfwSetWindowIcon = NativeFuncExecuturer.LoadFunction<glfwSetWindowIconDelegate>(NativeLibrary, "glfwSetWindowIcon");
public static void glfwSetWindowIcon(nint window, int count, nint images) => _glfwSetWindowIcon(window, count, images);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate void glfwGetWindowPosDelegate(nint window, out int xpos, out int ypos);
private static glfwGetWindowPosDelegate _glfwGetWindowPos = NativeFuncExecuturer.LoadFunction<glfwGetWindowPosDelegate>(NativeLibrary, "glfwGetWindowPos");
public static void glfwGetWindowPos(nint window, out int xpos, out int ypos) => _glfwGetWindowPos(window, out xpos, out ypos);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate void glfwSetWindowPosDelegate(nint window, int xpos, int ypos);
private static glfwSetWindowPosDelegate _glfwSetWindowPos = NativeFuncExecuturer.LoadFunction<glfwSetWindowPosDelegate>(NativeLibrary, "glfwSetWindowPos");
public static void glfwSetWindowPos(nint window, int xpos, int ypos) => _glfwSetWindowPos(window, xpos, ypos);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate void glfwGetWindowSizeDelegate(nint window, out int width, out int height);
private static glfwGetWindowSizeDelegate _glfwGetWindowSize = NativeFuncExecuturer.LoadFunction<glfwGetWindowSizeDelegate>(NativeLibrary, "glfwGetWindowSize");
public static void glfwGetWindowSize(nint window, out int width, out int height) => _glfwGetWindowSize(window, out width, out height);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate void glfwSetWindowSizeLimitsDelegate(nint window, int minwidth, int minheight, int maxwidth, int maxheight);
private static glfwSetWindowSizeLimitsDelegate _glfwSetWindowSizeLimits = NativeFuncExecuturer.LoadFunction<glfwSetWindowSizeLimitsDelegate>(NativeLibrary, "glfwSetWindowSizeLimits");
public static void glfwSetWindowSizeLimits(nint window, int minwidth, int minheight, int maxwidth, int maxheight) => _glfwSetWindowSizeLimits(window, minwidth, minheight, maxwidth, maxheight);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate void glfwSetWindowAspectRatioDelegate(nint window, int numer, int denom);
private static glfwSetWindowAspectRatioDelegate _glfwSetWindowAspectRatio = NativeFuncExecuturer.LoadFunction<glfwSetWindowAspectRatioDelegate>(NativeLibrary, "glfwSetWindowAspectRatio");
public static void glfwSetWindowAspectRatio(nint window, int numer, int denom) => _glfwSetWindowAspectRatio(window, numer, denom);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate void glfwSetWindowSizeDelegate(nint window, int width, int height);
private static glfwSetWindowSizeDelegate _glfwSetWindowSize = NativeFuncExecuturer.LoadFunction<glfwSetWindowSizeDelegate>(NativeLibrary, "glfwSetWindowSize");
public static void glfwSetWindowSize(nint window, int width, int height) => _glfwSetWindowSize(window, width, height);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate void glfwGetFramebufferSizeDelegate(nint window, out int width, out int height);
private static glfwGetFramebufferSizeDelegate _glfwGetFramebufferSize = NativeFuncExecuturer.LoadFunction<glfwGetFramebufferSizeDelegate>(NativeLibrary, "glfwGetFramebufferSize");
public static void glfwGetFramebufferSize(nint window, out int width, out int height) => _glfwGetFramebufferSize(window, out width, out height);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate void glfwGetWindowFrameSizeDelegate(nint window, out int left, out int top, out int right, out int bottom);
private static glfwGetWindowFrameSizeDelegate _glfwGetWindowFrameSize = NativeFuncExecuturer.LoadFunction<glfwGetWindowFrameSizeDelegate>(NativeLibrary, "glfwGetWindowFrameSize");
public static void glfwGetWindowFrameSize(nint window, out int left, out int top, out int right, out int bottom) => _glfwGetWindowFrameSize(window, out left, out top, out right, out bottom);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate void glfwGetWindowContentScaleDelegate(nint window, out float xscale, out float yscale);
private static glfwGetWindowContentScaleDelegate _glfwGetWindowContentScale = NativeFuncExecuturer.LoadFunction<glfwGetWindowContentScaleDelegate>(NativeLibrary, "glfwGetWindowContentScale");
public static void glfwGetWindowContentScale(nint window, out float xscale, out float yscale) => _glfwGetWindowContentScale(window, out xscale, out yscale);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate float glfwGetWindowOpacityDelegate(nint window);
private static glfwGetWindowOpacityDelegate _glfwGetWindowOpacity = NativeFuncExecuturer.LoadFunction<glfwGetWindowOpacityDelegate>(NativeLibrary, "glfwGetWindowOpacity");
public static float glfwGetWindowOpacity(nint window) => _glfwGetWindowOpacity(window);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate void glfwSetWindowOpacityDelegate(nint window, float opacity);
private static glfwSetWindowOpacityDelegate _glfwSetWindowOpacity = NativeFuncExecuturer.LoadFunction<glfwSetWindowOpacityDelegate>(NativeLibrary, "glfwSetWindowOpacity");
public static void glfwSetWindowOpacity(nint window, float opacity) => _glfwSetWindowOpacity(window, opacity);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate void glfwIconifyWindowDelegate(nint window);
private static glfwIconifyWindowDelegate _glfwIconifyWindow = NativeFuncExecuturer.LoadFunction<glfwIconifyWindowDelegate>(NativeLibrary, "glfwIconifyWindow");
public static void glfwIconifyWindow(nint window) => _glfwIconifyWindow(window);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate void glfwRestoreWindowDelegate(nint window);
private static glfwRestoreWindowDelegate _glfwRestoreWindow = NativeFuncExecuturer.LoadFunction<glfwRestoreWindowDelegate>(NativeLibrary, "glfwRestoreWindow");
public static void glfwRestoreWindow(nint window) => _glfwRestoreWindow(window);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate void glfwMaximizeWindowDelegate(nint window);
private static glfwMaximizeWindowDelegate _glfwMaximizeWindow = NativeFuncExecuturer.LoadFunction<glfwMaximizeWindowDelegate>(NativeLibrary, "glfwMaximizeWindow");
public static void glfwMaximizeWindow(nint window) => _glfwMaximizeWindow(window);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate void glfwShowWindowDelegate(nint window);
private static glfwShowWindowDelegate _glfwShowWindow = NativeFuncExecuturer.LoadFunction<glfwShowWindowDelegate>(NativeLibrary, "glfwShowWindow");
public static void glfwShowWindow(nint window) => _glfwShowWindow(window);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate void glfwHideWindowDelegate(nint window);
private static glfwHideWindowDelegate _glfwHideWindow = NativeFuncExecuturer.LoadFunction<glfwHideWindowDelegate>(NativeLibrary, "glfwHideWindow");
public static void glfwHideWindow(nint window) => _glfwHideWindow(window);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate void glfwFocusWindowDelegate(nint window);
private static glfwFocusWindowDelegate _glfwFocusWindow = NativeFuncExecuturer.LoadFunction<glfwFocusWindowDelegate>(NativeLibrary, "glfwFocusWindow");
public static void glfwFocusWindow(nint window) => _glfwFocusWindow(window);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate void glfwRequestWindowAttentionDelegate(nint window);
private static glfwRequestWindowAttentionDelegate _glfwRequestWindowAttention = NativeFuncExecuturer.LoadFunction<glfwRequestWindowAttentionDelegate>(NativeLibrary, "glfwRequestWindowAttention");
public static void glfwRequestWindowAttention(nint window) => _glfwRequestWindowAttention(window);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate nint glfwGetWindowMonitorDelegate(nint window);
private static glfwGetWindowMonitorDelegate _glfwGetWindowMonitor = NativeFuncExecuturer.LoadFunction<glfwGetWindowMonitorDelegate>(NativeLibrary, "glfwGetWindowMonitor");
public static nint glfwGetWindowMonitor(nint window) => _glfwGetWindowMonitor(window);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate void glfwSetWindowMonitorDelegate(nint window, nint monitor, int xpos, int ypos, int width, int height, int refreshRate);
private static glfwSetWindowMonitorDelegate _glfwSetWindowMonitor = NativeFuncExecuturer.LoadFunction<glfwSetWindowMonitorDelegate>(NativeLibrary, "glfwSetWindowMonitor");
public static void glfwSetWindowMonitor(nint window, nint monitor, int xpos, int ypos, int width, int height, int refreshRate) => _glfwSetWindowMonitor(window, monitor, xpos, ypos, width, height, refreshRate);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate int glfwGetWindowAttribDelegate(nint window, int attrib);
private static glfwGetWindowAttribDelegate _glfwGetWindowAttrib = NativeFuncExecuturer.LoadFunction<glfwGetWindowAttribDelegate>(NativeLibrary, "glfwGetWindowAttrib");
public static int glfwGetWindowAttrib(nint window, int attrib) => _glfwGetWindowAttrib(window, attrib);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate void glfwSetWindowAttribDelegate(nint window, int attrib, int value);
private static glfwSetWindowAttribDelegate _glfwSetWindowAttrib = NativeFuncExecuturer.LoadFunction<glfwSetWindowAttribDelegate>(NativeLibrary, "glfwSetWindowAttrib");
public static void glfwSetWindowAttrib(nint window, int attrib, int value) => _glfwSetWindowAttrib(window, attrib, value);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate void glfwSetWindowUserPointerDelegate(nint window, nint pointer);
private static glfwSetWindowUserPointerDelegate _glfwSetWindowUserPointer = NativeFuncExecuturer.LoadFunction<glfwSetWindowUserPointerDelegate>(NativeLibrary, "glfwSetWindowUserPointer");
public static void glfwSetWindowUserPointer(nint window, nint pointer) => _glfwSetWindowUserPointer(window, pointer);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate nint glfwGetWindowUserPointerDelegate(nint window);
private static glfwGetWindowUserPointerDelegate _glfwGetWindowUserPointer = NativeFuncExecuturer.LoadFunction<glfwGetWindowUserPointerDelegate>(NativeLibrary, "glfwGetWindowUserPointer");
public static nint glfwGetWindowUserPointer(nint window) => _glfwGetWindowUserPointer(window);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate GLFWwindowposfun glfwSetWindowPosCallbackDelegate(nint window, GLFWwindowposfun callback);
private static glfwSetWindowPosCallbackDelegate _glfwSetWindowPosCallback = NativeFuncExecuturer.LoadFunction<glfwSetWindowPosCallbackDelegate>(NativeLibrary, "glfwSetWindowPosCallback");
public static GLFWwindowposfun glfwSetWindowPosCallback(nint window, GLFWwindowposfun callback) => _glfwSetWindowPosCallback(window, callback);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate GLFWwindowsizefun glfwSetWindowSizeCallbackDelegate(nint window, GLFWwindowsizefun callback);
private static glfwSetWindowSizeCallbackDelegate _glfwSetWindowSizeCallback = NativeFuncExecuturer.LoadFunction<glfwSetWindowSizeCallbackDelegate>(NativeLibrary, "glfwSetWindowSizeCallback");
public static GLFWwindowsizefun glfwSetWindowSizeCallback(nint window, GLFWwindowsizefun callback) => _glfwSetWindowSizeCallback(window, callback);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate GLFWwindowclosefun glfwSetWindowCloseCallbackDelegate(nint window, GLFWwindowclosefun callback);
private static glfwSetWindowCloseCallbackDelegate _glfwSetWindowCloseCallback = NativeFuncExecuturer.LoadFunction<glfwSetWindowCloseCallbackDelegate>(NativeLibrary, "glfwSetWindowCloseCallback");
public static GLFWwindowclosefun glfwSetWindowCloseCallback(nint window, GLFWwindowclosefun callback) => _glfwSetWindowCloseCallback(window, callback);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate GLFWwindowrefreshfun glfwSetWindowRefreshCallbackDelegate(nint window, GLFWwindowrefreshfun callback);
private static glfwSetWindowRefreshCallbackDelegate _glfwSetWindowRefreshCallback = NativeFuncExecuturer.LoadFunction<glfwSetWindowRefreshCallbackDelegate>(NativeLibrary, "glfwSetWindowRefreshCallback");
public static GLFWwindowrefreshfun glfwSetWindowRefreshCallback(nint window, GLFWwindowrefreshfun callback) => _glfwSetWindowRefreshCallback(window, callback);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate GLFWwindowfocusfun glfwSetWindowFocusCallbackDelegate(nint window, GLFWwindowfocusfun callback);
private static glfwSetWindowFocusCallbackDelegate _glfwSetWindowFocusCallback = NativeFuncExecuturer.LoadFunction<glfwSetWindowFocusCallbackDelegate>(NativeLibrary, "glfwSetWindowFocusCallback");
public static GLFWwindowfocusfun glfwSetWindowFocusCallback(nint window, GLFWwindowfocusfun callback) => _glfwSetWindowFocusCallback(window, callback);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate GLFWwindowiconifyfun glfwSetWindowIconifyCallbackDelegate(nint window, GLFWwindowiconifyfun callback);
private static glfwSetWindowIconifyCallbackDelegate _glfwSetWindowIconifyCallback = NativeFuncExecuturer.LoadFunction<glfwSetWindowIconifyCallbackDelegate>(NativeLibrary, "glfwSetWindowIconifyCallback");
public static GLFWwindowiconifyfun glfwSetWindowIconifyCallback(nint window, GLFWwindowiconifyfun callback) => _glfwSetWindowIconifyCallback(window, callback);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate GLFWwindowmaximizefun glfwSetWindowMaximizeCallbackDelegate(nint window, GLFWwindowmaximizefun callback);
private static glfwSetWindowMaximizeCallbackDelegate _glfwSetWindowMaximizeCallback = NativeFuncExecuturer.LoadFunction<glfwSetWindowMaximizeCallbackDelegate>(NativeLibrary, "glfwSetWindowMaximizeCallback");
public static GLFWwindowmaximizefun glfwSetWindowMaximizeCallback(nint window, GLFWwindowmaximizefun callback) => _glfwSetWindowMaximizeCallback(window, callback);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate GLFWframebuffersizefun glfwSetFramebufferSizeCallbackDelegate(nint window, GLFWframebuffersizefun callback);
private static glfwSetFramebufferSizeCallbackDelegate _glfwSetFramebufferSizeCallback = NativeFuncExecuturer.LoadFunction<glfwSetFramebufferSizeCallbackDelegate>(NativeLibrary, "glfwSetFramebufferSizeCallback");
public static GLFWframebuffersizefun glfwSetFramebufferSizeCallback(nint window, GLFWframebuffersizefun callback) => _glfwSetFramebufferSizeCallback(window, callback);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate GLFWwindowcontentscalefun glfwSetWindowContentScaleCallbackDelegate(nint window, GLFWwindowcontentscalefun callback);
private static glfwSetWindowContentScaleCallbackDelegate _glfwSetWindowContentScaleCallback = NativeFuncExecuturer.LoadFunction<glfwSetWindowContentScaleCallbackDelegate>(NativeLibrary, "glfwSetWindowContentScaleCallback");
public static GLFWwindowcontentscalefun glfwSetWindowContentScaleCallback(nint window, GLFWwindowcontentscalefun callback) => _glfwSetWindowContentScaleCallback(window, callback);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate void glfwPollEventsDelegate();
private static glfwPollEventsDelegate _glfwPollEvents = NativeFuncExecuturer.LoadFunction<glfwPollEventsDelegate>(NativeLibrary, "glfwPollEvents");
public static void glfwPollEvents() => _glfwPollEvents();

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate void glfwWaitEventsDelegate();
private static glfwWaitEventsDelegate _glfwWaitEvents = NativeFuncExecuturer.LoadFunction<glfwWaitEventsDelegate>(NativeLibrary, "glfwWaitEvents");
public static void glfwWaitEvents() => _glfwWaitEvents();

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate void glfwWaitEventsTimeoutDelegate(double timeout);
private static glfwWaitEventsTimeoutDelegate _glfwWaitEventsTimeout = NativeFuncExecuturer.LoadFunction<glfwWaitEventsTimeoutDelegate>(NativeLibrary, "glfwWaitEventsTimeout");
public static void glfwWaitEventsTimeout(double timeout) => _glfwWaitEventsTimeout(timeout);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate void glfwPostEmptyEventDelegate();
private static glfwPostEmptyEventDelegate _glfwPostEmptyEvent = NativeFuncExecuturer.LoadFunction<glfwPostEmptyEventDelegate>(NativeLibrary, "glfwPostEmptyEvent");
public static void glfwPostEmptyEvent() => _glfwPostEmptyEvent();

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate int glfwGetInputModeDelegate(nint window, int mode);
private static glfwGetInputModeDelegate _glfwGetInputMode = NativeFuncExecuturer.LoadFunction<glfwGetInputModeDelegate>(NativeLibrary, "glfwGetInputMode");
public static int glfwGetInputMode(nint window, int mode) => _glfwGetInputMode(window, mode);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate void glfwSetInputModeDelegate(nint window, int mode, int value);
private static glfwSetInputModeDelegate _glfwSetInputMode = NativeFuncExecuturer.LoadFunction<glfwSetInputModeDelegate>(NativeLibrary, "glfwSetInputMode");
public static void glfwSetInputMode(nint window, int mode, int value) => _glfwSetInputMode(window, mode, value);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate int glfwRawMouseMotionSupportedDelegate();
private static glfwRawMouseMotionSupportedDelegate _glfwRawMouseMotionSupported = NativeFuncExecuturer.LoadFunction<glfwRawMouseMotionSupportedDelegate>(NativeLibrary, "glfwRawMouseMotionSupported");
public static int glfwRawMouseMotionSupported() => _glfwRawMouseMotionSupported();

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate string glfwGetKeyNameDelegate(int key, int scancode);
private static glfwGetKeyNameDelegate _glfwGetKeyName = NativeFuncExecuturer.LoadFunction<glfwGetKeyNameDelegate>(NativeLibrary, "glfwGetKeyName");
public static string glfwGetKeyName(int key, int scancode) => _glfwGetKeyName(key, scancode);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate int glfwGetKeyScancodeDelegate(int key);
private static glfwGetKeyScancodeDelegate _glfwGetKeyScancode = NativeFuncExecuturer.LoadFunction<glfwGetKeyScancodeDelegate>(NativeLibrary, "glfwGetKeyScancode");
public static int glfwGetKeyScancode(int key) => _glfwGetKeyScancode(key);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate int glfwGetKeyDelegate(nint window, int key);
private static glfwGetKeyDelegate _glfwGetKey = NativeFuncExecuturer.LoadFunction<glfwGetKeyDelegate>(NativeLibrary, "glfwGetKey");
public static int glfwGetKey(nint window, int key) => _glfwGetKey(window, key);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate int glfwGetMouseButtonDelegate(nint window, int button);
private static glfwGetMouseButtonDelegate _glfwGetMouseButton = NativeFuncExecuturer.LoadFunction<glfwGetMouseButtonDelegate>(NativeLibrary, "glfwGetMouseButton");
public static int glfwGetMouseButton(nint window, int button) => _glfwGetMouseButton(window, button);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate void glfwGetCursorPosDelegate(nint window, out double xpos, out double ypos);
private static glfwGetCursorPosDelegate _glfwGetCursorPos = NativeFuncExecuturer.LoadFunction<glfwGetCursorPosDelegate>(NativeLibrary, "glfwGetCursorPos");
public static void glfwGetCursorPos(nint window, out double xpos, out double ypos) => _glfwGetCursorPos(window, out xpos, out ypos);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate void glfwSetCursorPosDelegate(nint window, double xpos, double ypos);
private static glfwSetCursorPosDelegate _glfwSetCursorPos = NativeFuncExecuturer.LoadFunction<glfwSetCursorPosDelegate>(NativeLibrary, "glfwSetCursorPos");
public static void glfwSetCursorPos(nint window, double xpos, double ypos) => _glfwSetCursorPos(window, xpos, ypos);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate nint glfwCreateCursorDelegate(nint image, int xhot, int yhot);
private static glfwCreateCursorDelegate _glfwCreateCursor = NativeFuncExecuturer.LoadFunction<glfwCreateCursorDelegate>(NativeLibrary, "glfwCreateCursor");
public static nint glfwCreateCursor(nint image, int xhot, int yhot) => _glfwCreateCursor(image, xhot, yhot);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate nint glfwCreateStandardCursorDelegate(int shape);
private static glfwCreateStandardCursorDelegate _glfwCreateStandardCursor = NativeFuncExecuturer.LoadFunction<glfwCreateStandardCursorDelegate>(NativeLibrary, "glfwCreateStandardCursor");
public static nint glfwCreateStandardCursor(int shape) => _glfwCreateStandardCursor(shape);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate void glfwDestroyCursorDelegate(nint cursor);
private static glfwDestroyCursorDelegate _glfwDestroyCursor = NativeFuncExecuturer.LoadFunction<glfwDestroyCursorDelegate>(NativeLibrary, "glfwDestroyCursor");
public static void glfwDestroyCursor(nint cursor) => _glfwDestroyCursor(cursor);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate void glfwSetCursorDelegate(nint window, nint cursor);
private static glfwSetCursorDelegate _glfwSetCursor = NativeFuncExecuturer.LoadFunction<glfwSetCursorDelegate>(NativeLibrary, "glfwSetCursor");
public static void glfwSetCursor(nint window, nint cursor) => _glfwSetCursor(window, cursor);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate GLFWkeyfun glfwSetKeyCallbackDelegate(nint window, GLFWkeyfun callback);
private static glfwSetKeyCallbackDelegate _glfwSetKeyCallback = NativeFuncExecuturer.LoadFunction<glfwSetKeyCallbackDelegate>(NativeLibrary, "glfwSetKeyCallback");
public static GLFWkeyfun glfwSetKeyCallback(nint window, GLFWkeyfun callback) => _glfwSetKeyCallback(window, callback);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate GLFWcharfun glfwSetCharCallbackDelegate(nint window, GLFWcharfun callback);
private static glfwSetCharCallbackDelegate _glfwSetCharCallback = NativeFuncExecuturer.LoadFunction<glfwSetCharCallbackDelegate>(NativeLibrary, "glfwSetCharCallback");
public static GLFWcharfun glfwSetCharCallback(nint window, GLFWcharfun callback) => _glfwSetCharCallback(window, callback);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate GLFWcharmodsfun glfwSetCharModsCallbackDelegate(nint window, GLFWcharmodsfun callback);
private static glfwSetCharModsCallbackDelegate _glfwSetCharModsCallback = NativeFuncExecuturer.LoadFunction<glfwSetCharModsCallbackDelegate>(NativeLibrary, "glfwSetCharModsCallback");
public static GLFWcharmodsfun glfwSetCharModsCallback(nint window, GLFWcharmodsfun callback) => _glfwSetCharModsCallback(window, callback);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate GLFWmousebuttonfun glfwSetMouseButtonCallbackDelegate(nint window, GLFWmousebuttonfun callback);
private static glfwSetMouseButtonCallbackDelegate _glfwSetMouseButtonCallback = NativeFuncExecuturer.LoadFunction<glfwSetMouseButtonCallbackDelegate>(NativeLibrary, "glfwSetMouseButtonCallback");
public static GLFWmousebuttonfun glfwSetMouseButtonCallback(nint window, GLFWmousebuttonfun callback) => _glfwSetMouseButtonCallback(window, callback);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate GLFWcursorposfun glfwSetCursorPosCallbackDelegate(nint window, GLFWcursorposfun callback);
private static glfwSetCursorPosCallbackDelegate _glfwSetCursorPosCallback = NativeFuncExecuturer.LoadFunction<glfwSetCursorPosCallbackDelegate>(NativeLibrary, "glfwSetCursorPosCallback");
public static GLFWcursorposfun glfwSetCursorPosCallback(nint window, GLFWcursorposfun callback) => _glfwSetCursorPosCallback(window, callback);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate GLFWcursorenterfun glfwSetCursorEnterCallbackDelegate(nint window, GLFWcursorenterfun callback);
private static glfwSetCursorEnterCallbackDelegate _glfwSetCursorEnterCallback = NativeFuncExecuturer.LoadFunction<glfwSetCursorEnterCallbackDelegate>(NativeLibrary, "glfwSetCursorEnterCallback");
public static GLFWcursorenterfun glfwSetCursorEnterCallback(nint window, GLFWcursorenterfun callback) => _glfwSetCursorEnterCallback(window, callback);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate GLFWscrollfun glfwSetScrollCallbackDelegate(nint window, GLFWscrollfun callback);
private static glfwSetScrollCallbackDelegate _glfwSetScrollCallback = NativeFuncExecuturer.LoadFunction<glfwSetScrollCallbackDelegate>(NativeLibrary, "glfwSetScrollCallback");
public static GLFWscrollfun glfwSetScrollCallback(nint window, GLFWscrollfun callback) => _glfwSetScrollCallback(window, callback);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate GLFWdropfun glfwSetDropCallbackDelegate(nint window, GLFWdropfun callback);
private static glfwSetDropCallbackDelegate _glfwSetDropCallback = NativeFuncExecuturer.LoadFunction<glfwSetDropCallbackDelegate>(NativeLibrary, "glfwSetDropCallback");
public static GLFWdropfun glfwSetDropCallback(nint window, GLFWdropfun callback) => _glfwSetDropCallback(window, callback);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate int glfwJoystickPresentDelegate(int jid);
private static glfwJoystickPresentDelegate _glfwJoystickPresent = NativeFuncExecuturer.LoadFunction<glfwJoystickPresentDelegate>(NativeLibrary, "glfwJoystickPresent");
public static int glfwJoystickPresent(int jid) => _glfwJoystickPresent(jid);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate float* glfwGetJoystickAxesDelegate(int jid, out int count);
private static glfwGetJoystickAxesDelegate _glfwGetJoystickAxes = NativeFuncExecuturer.LoadFunction<glfwGetJoystickAxesDelegate>(NativeLibrary, "glfwGetJoystickAxes");
public static float* glfwGetJoystickAxes(int jid, out int count) => _glfwGetJoystickAxes(jid, out count);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate string glfwGetJoystickButtonsDelegate(int jid, out int count);
private static glfwGetJoystickButtonsDelegate _glfwGetJoystickButtons = NativeFuncExecuturer.LoadFunction<glfwGetJoystickButtonsDelegate>(NativeLibrary, "glfwGetJoystickButtons");
public static string glfwGetJoystickButtons(int jid, out int count) => _glfwGetJoystickButtons(jid, out count);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate string glfwGetJoystickHatsDelegate(int jid, out int count);
private static glfwGetJoystickHatsDelegate _glfwGetJoystickHats = NativeFuncExecuturer.LoadFunction<glfwGetJoystickHatsDelegate>(NativeLibrary, "glfwGetJoystickHats");
public static string glfwGetJoystickHats(int jid, out int count) => _glfwGetJoystickHats(jid, out count);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate string glfwGetJoystickNameDelegate(int jid);
private static glfwGetJoystickNameDelegate _glfwGetJoystickName = NativeFuncExecuturer.LoadFunction<glfwGetJoystickNameDelegate>(NativeLibrary, "glfwGetJoystickName");
public static string glfwGetJoystickName(int jid) => _glfwGetJoystickName(jid);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate string glfwGetJoystickGUIDDelegate(int jid);
private static glfwGetJoystickGUIDDelegate _glfwGetJoystickGUID = NativeFuncExecuturer.LoadFunction<glfwGetJoystickGUIDDelegate>(NativeLibrary, "glfwGetJoystickGUID");
public static string glfwGetJoystickGUID(int jid) => _glfwGetJoystickGUID(jid);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate void glfwSetJoystickUserPointerDelegate(int jid, nint pointer);
private static glfwSetJoystickUserPointerDelegate _glfwSetJoystickUserPointer = NativeFuncExecuturer.LoadFunction<glfwSetJoystickUserPointerDelegate>(NativeLibrary, "glfwSetJoystickUserPointer");
public static void glfwSetJoystickUserPointer(int jid, nint pointer) => _glfwSetJoystickUserPointer(jid, pointer);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate nint glfwGetJoystickUserPointerDelegate(int jid);
private static glfwGetJoystickUserPointerDelegate _glfwGetJoystickUserPointer = NativeFuncExecuturer.LoadFunction<glfwGetJoystickUserPointerDelegate>(NativeLibrary, "glfwGetJoystickUserPointer");
public static nint glfwGetJoystickUserPointer(int jid) => _glfwGetJoystickUserPointer(jid);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate int glfwJoystickIsGamepadDelegate(int jid);
private static glfwJoystickIsGamepadDelegate _glfwJoystickIsGamepad = NativeFuncExecuturer.LoadFunction<glfwJoystickIsGamepadDelegate>(NativeLibrary, "glfwJoystickIsGamepad");
public static int glfwJoystickIsGamepad(int jid) => _glfwJoystickIsGamepad(jid);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate GLFWjoystickfun glfwSetJoystickCallbackDelegate(GLFWjoystickfun callback);
private static glfwSetJoystickCallbackDelegate _glfwSetJoystickCallback = NativeFuncExecuturer.LoadFunction<glfwSetJoystickCallbackDelegate>(NativeLibrary, "glfwSetJoystickCallback");
public static GLFWjoystickfun glfwSetJoystickCallback(GLFWjoystickfun callback) => _glfwSetJoystickCallback(callback);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate int glfwUpdateGamepadMappingsDelegate(string @string);
private static glfwUpdateGamepadMappingsDelegate _glfwUpdateGamepadMappings = NativeFuncExecuturer.LoadFunction<glfwUpdateGamepadMappingsDelegate>(NativeLibrary, "glfwUpdateGamepadMappings");
public static int glfwUpdateGamepadMappings(string @string) => _glfwUpdateGamepadMappings(@string);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate string glfwGetGamepadNameDelegate(int jid);
private static glfwGetGamepadNameDelegate _glfwGetGamepadName = NativeFuncExecuturer.LoadFunction<glfwGetGamepadNameDelegate>(NativeLibrary, "glfwGetGamepadName");
public static string glfwGetGamepadName(int jid) => _glfwGetGamepadName(jid);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate int glfwGetGamepadStateDelegate(int jid, nint state);
private static glfwGetGamepadStateDelegate _glfwGetGamepadState = NativeFuncExecuturer.LoadFunction<glfwGetGamepadStateDelegate>(NativeLibrary, "glfwGetGamepadState");
public static int glfwGetGamepadState(int jid, nint state) => _glfwGetGamepadState(jid, state);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate void glfwSetClipboardStringDelegate(nint window, string @string);
private static glfwSetClipboardStringDelegate _glfwSetClipboardString = NativeFuncExecuturer.LoadFunction<glfwSetClipboardStringDelegate>(NativeLibrary, "glfwSetClipboardString");
public static void glfwSetClipboardString(nint window, string @string) => _glfwSetClipboardString(window, @string);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate string glfwGetClipboardStringDelegate(nint window);
private static glfwGetClipboardStringDelegate _glfwGetClipboardString = NativeFuncExecuturer.LoadFunction<glfwGetClipboardStringDelegate>(NativeLibrary, "glfwGetClipboardString");
public static string glfwGetClipboardString(nint window) => _glfwGetClipboardString(window);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate double glfwGetTimeDelegate();
private static glfwGetTimeDelegate _glfwGetTime = NativeFuncExecuturer.LoadFunction<glfwGetTimeDelegate>(NativeLibrary, "glfwGetTime");
public static double glfwGetTime() => _glfwGetTime();

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate void glfwSetTimeDelegate(double time);
private static glfwSetTimeDelegate _glfwSetTime = NativeFuncExecuturer.LoadFunction<glfwSetTimeDelegate>(NativeLibrary, "glfwSetTime");
public static void glfwSetTime(double time) => _glfwSetTime(time);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate ulong glfwGetTimerValueDelegate();
private static glfwGetTimerValueDelegate _glfwGetTimerValue = NativeFuncExecuturer.LoadFunction<glfwGetTimerValueDelegate>(NativeLibrary, "glfwGetTimerValue");
public static ulong glfwGetTimerValue() => _glfwGetTimerValue();

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate ulong glfwGetTimerFrequencyDelegate();
private static glfwGetTimerFrequencyDelegate _glfwGetTimerFrequency = NativeFuncExecuturer.LoadFunction<glfwGetTimerFrequencyDelegate>(NativeLibrary, "glfwGetTimerFrequency");
public static ulong glfwGetTimerFrequency() => _glfwGetTimerFrequency();

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate void glfwMakeContextCurrentDelegate(nint window);
private static glfwMakeContextCurrentDelegate _glfwMakeContextCurrent = NativeFuncExecuturer.LoadFunction<glfwMakeContextCurrentDelegate>(NativeLibrary, "glfwMakeContextCurrent");
public static void glfwMakeContextCurrent(nint window) => _glfwMakeContextCurrent(window);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate nint glfwGetCurrentContextDelegate();
private static glfwGetCurrentContextDelegate _glfwGetCurrentContext = NativeFuncExecuturer.LoadFunction<glfwGetCurrentContextDelegate>(NativeLibrary, "glfwGetCurrentContext");
public static nint glfwGetCurrentContext() => _glfwGetCurrentContext();

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate void glfwSwapBuffersDelegate(nint window);
private static glfwSwapBuffersDelegate _glfwSwapBuffers = NativeFuncExecuturer.LoadFunction<glfwSwapBuffersDelegate>(NativeLibrary, "glfwSwapBuffers");
public static void glfwSwapBuffers(nint window) => _glfwSwapBuffers(window);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate void glfwSwapIntervalDelegate(int interval);
private static glfwSwapIntervalDelegate _glfwSwapInterval = NativeFuncExecuturer.LoadFunction<glfwSwapIntervalDelegate>(NativeLibrary, "glfwSwapInterval");
public static void glfwSwapInterval(int interval) => _glfwSwapInterval(interval);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate int glfwExtensionSupportedDelegate(string extension);
private static glfwExtensionSupportedDelegate _glfwExtensionSupported = NativeFuncExecuturer.LoadFunction<glfwExtensionSupportedDelegate>(NativeLibrary, "glfwExtensionSupported");
public static int glfwExtensionSupported(string extension) => _glfwExtensionSupported(extension);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate nint glfwGetProcAddressDelegate(string procname);
private static glfwGetProcAddressDelegate _glfwGetProcAddress = NativeFuncExecuturer.LoadFunction<glfwGetProcAddressDelegate>(NativeLibrary, "glfwGetProcAddress");
public static nint glfwGetProcAddress(string procname) => _glfwGetProcAddress(procname);

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate int glfwVulkanSupportedDelegate();
private static glfwVulkanSupportedDelegate _glfwVulkanSupported = NativeFuncExecuturer.LoadFunction<glfwVulkanSupportedDelegate>(NativeLibrary, "glfwVulkanSupported");
public static int glfwVulkanSupported() => _glfwVulkanSupported();

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate char** glfwGetRequiredInstanceExtensionsDelegate(out uint count);
private static glfwGetRequiredInstanceExtensionsDelegate _glfwGetRequiredInstanceExtensions = NativeFuncExecuturer.LoadFunction<glfwGetRequiredInstanceExtensionsDelegate>(NativeLibrary, "glfwGetRequiredInstanceExtensions");
public static char** glfwGetRequiredInstanceExtensions(out uint count) => _glfwGetRequiredInstanceExtensions(out count);

}

public static class NativeFuncExecuturer
{
private const int RtldLazy = 0x0001;

private static class Windows
{
    [DllImport("kernel32", CharSet = CharSet.Ansi, ExactSpelling = true, SetLastError = true)]
    public static extern nint GetProcAddress(nint hModule, string procName);
    [DllImport("kernel32", SetLastError = true, CharSet = CharSet.Unicode)]
    public static extern nint LoadLibraryW(string lpszLib);
}

private static class Linux
{
    [DllImport("libdl.so.2")]
    public static extern nint dlopen(string path, int flags);
    [DllImport("libdl.so.2")]
    public static extern nint dlsym(nint handle, string symbol);
}

public static nint LoadLibraryExt(string libName)
{
    var baseDirectory = AppDomain.CurrentDomain.BaseDirectory;
    var ret = LoadLibrary(Path.Combine(baseDirectory,"runtimes" , libName));

    if (ret == nint.Zero) ret = LoadLibrary(libName);
    if (ret == nint.Zero) throw new Exception("Failed to load library: " + libName);
    return ret;
}

private static nint LoadLibrary(string libName)
{
    return RuntimeInformation.IsOSPlatform(OSPlatform.Windows)
        ? Windows.LoadLibraryW(libName)
        : Linux.dlopen(libName, RtldLazy);
}

public static T LoadFunction<T>(nint library, string function)
{
    var ret = RuntimeInformation.IsOSPlatform(OSPlatform.Windows)
        ? Windows.GetProcAddress(library, function)
        : Linux.dlsym(library, function);

    return Marshal.GetDelegateForFunctionPointer<T>(ret);
}

private static string PlatformRid
{
    get
    {
        if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows) && Environment.Is64BitProcess)
            return "win-x64";
        if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows) && !Environment.Is64BitProcess)
            return "win-x86";
        if (RuntimeInformation.IsOSPlatform(OSPlatform.Linux))
            return "linux-x64";

        return "unknown";
    }
}

}
`

from glfw-net.

ForeverZer0 avatar ForeverZer0 commented on August 26, 2024

I know what AOT-compiling is, I meant under what circumstances the error you are getting occurs.

AOT-compiling bindings is unlikely to improve anything, as they are simply wrapping native functions that are doing the real work, which are already compiled to native machine code. Using unmanaged function pointers that implement the calli instruction in IL might see a minor improvement, but whether that is JIT or AOT is insignificant. I don't intend this statement to be dismissive of your issue, I am just highly skeptical of any actual improvement of doing it without seeing empirical benchmarks for such bare bindings.

from glfw-net.

ForeverZer0 avatar ForeverZer0 commented on August 26, 2024

Is this failing under Linux, Windows, or both? When does it occur: i.e. when compiling, when the assembly is loaded, when initializing`, when creating a context, etc, etc?

Reading the string pointer causing an error is rather odd unless something else is already way out of line where it can't even emit an error correctly. You indicated it gave a "platform error" when bypassing reading the string pointer. That used by the native GLFW library as a generic error for anything that isn't more specific, so it isn't a very helpful error code without the message, but it is being thrown by the native library.

from glfw-net.

Terjokan avatar Terjokan commented on August 26, 2024

The error occured by running the compiled programm, the compiling didnt gave me any error. I only tried for windows

from glfw-net.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.