Ejemplo n.º 1
0
 public static extern VkResult CreateWindowSurface(IntPtr instance, GLFWwindow window, IntPtr allocator, out long surface);
Ejemplo n.º 2
0
 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();
 }
Ejemplo n.º 3
0
 public GLFWwindow(GLFWwindow w)
 {
     __Instance = w.__Instance;
     Init();
 }
Ejemplo n.º 4
0
 public GLFWmonitor(GLFWwindow window)
 {
     this.__Instance = Glfw.__Internal.GetWindowMonitor_0(window.__Instance);
 }