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