public static extern VkResult CreateWindowSurface(IntPtr instance, GLFWwindow window, IntPtr allocator, out long surface);
public GLFWwindow(int width, int height, string title, GLFWmonitor m, GLFWwindow w) { __Instance = Glfw.__Internal.CreateWindow_0(width, height, title, m.__Instance, w.__Instance); this.title = title; Init(); }
public GLFWwindow(GLFWwindow w) { __Instance = w.__Instance; Init(); }
public GLFWmonitor(GLFWwindow window) { this.__Instance = Glfw.__Internal.GetWindowMonitor_0(window.__Instance); }