(i presume native based on `ARM-64 (Native)` but i have no idea how this stuff works)
(i presume native based on
ARM-64 (Native) but i have no idea how this stuff works)ARM-64 (Native)Glfw.ThrowExceptions(); calls in GlfwWindow where you think it makes sense


Glfw.ThrowExceptions();GlfwWindow public static GlfwCallbacks.ErrorCallback ErrorCallback { get; } = (errorCode, description) =>
{
var ex = new GlfwException($"{errorCode}: {description}") { ErrorCode = errorCode };
if (_isWindows)
{
// we can actually be helpful on windows which is cool
throw ex;
}
// ffs
_exceptions.Add(ex);
};