예제 #1
0
 public static extern WindowPtr glfwCreateWindow(
     int width, int height,
     string title,
     MonitorPtr monitor, WindowPtr window
     );
예제 #2
0
 public static extern NativeGammaRamp *glfwGetGammaRamp(MonitorPtr monitor);
예제 #3
0
 public static extern void glfwSetGammaRamp(MonitorPtr monitor, NativeGammaRamp *ramp);
예제 #4
0
 public static extern VideoMode *glfwGetVideoMode(MonitorPtr monitor);
예제 #5
0
 public static extern void glfwSetGamma(MonitorPtr monitor, float gamma);
예제 #6
0
 public static extern VideoMode *glfwGetVideoModes(MonitorPtr monitor, out int count);
예제 #7
0
 public static extern byte *glfwGetMonitorName(MonitorPtr monitor);
예제 #8
0
 public static extern void glfwGetMonitorPhysicalSize(MonitorPtr monitor, out int width, out int height);
예제 #9
0
 public static extern void glfwGetMonitorPos(MonitorPtr monitor, out int x, out int y);
예제 #10
0
 public static extern void glfwSetWindowMonitor(
     WindowPtr window, MonitorPtr monitor,
     int x, int y,
     int width, int height,
     int refreshRate
     );