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