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