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