Ejemplo n.º 1
0
 public static extern int glfwGetInputMode(WindowPtr window, InputMode mode);
Ejemplo n.º 2
0
 public static extern void glfwGetWindowPos(WindowPtr window, out int x, out int y);
Ejemplo n.º 3
0
 public static extern void glfwGetWindowSize(WindowPtr window, out int width, out int height);
Ejemplo n.º 4
0
 public static extern bool glfwWindowShouldClose(WindowPtr window);
Ejemplo n.º 5
0
 public static extern void glfwSetWindowTitle(WindowPtr window, string title);
Ejemplo n.º 6
0
 public static extern void glfwSwapBuffers(WindowPtr window);
Ejemplo n.º 7
0
 public static extern WindowPtr glfwCreateWindow(
     int width, int height,
     string title,
     MonitorPtr monitor, WindowPtr window
     );
Ejemplo n.º 8
0
 public static extern void glfwSetCursor(WindowPtr window, Cursor cursor);
Ejemplo n.º 9
0
 public static extern IntPtr glfwSetKeyCallback(WindowPtr window, KeyCallback callback);
Ejemplo n.º 10
0
 public static extern void glfwGetCursorPos(WindowPtr window, out double x, out double y);
Ejemplo n.º 11
0
 public static extern void glfwSetCursorPos(WindowPtr window, double x, double y);
Ejemplo n.º 12
0
 public static extern KeyAction glfwGetMouseButton(WindowPtr window, MouseButton button);
Ejemplo n.º 13
0
 public static extern KeyAction glfwGetKey(WindowPtr window, KeyCode key);
Ejemplo n.º 14
0
 public static extern void glfwSetInputMode(WindowPtr window, InputMode mode, int value);
Ejemplo n.º 15
0
 public static extern byte *glfwGetClipboardString(WindowPtr window);
Ejemplo n.º 16
0
 public static extern IntPtr glfwSetCharModsCallback(WindowPtr window, CharModsCallback callback);
Ejemplo n.º 17
0
 public static extern void glfwMakeContextCurrent(WindowPtr window);
Ejemplo n.º 18
0
 public static extern IntPtr glfwSetMouseButtonCallback(WindowPtr window, MouseButtonCallback callback);
Ejemplo n.º 19
0
 public static extern int glfwCreateWindowSurface(IntPtr instance, WindowPtr window, IntPtr allocator, out ulong surface);
Ejemplo n.º 20
0
 public static extern IntPtr glfwSetCursorEnterCallback(WindowPtr window, CursorEnterCallback callback);
Ejemplo n.º 21
0
 public static extern void glfwDestroyWindow(WindowPtr window);
Ejemplo n.º 22
0
 public static extern IntPtr glfwSetScrollCallback(WindowPtr window, ScrollCallback callback);
Ejemplo n.º 23
0
 public static extern void glfwSetWindowShouldClose(WindowPtr window, bool value);
Ejemplo n.º 24
0
 public static extern IntPtr glfwSetDropCallback(WindowPtr window, FileDropCallback callback);
Ejemplo n.º 25
0
 public static extern void glfwSetWindowIcon(WindowPtr window, int count, NativeImage *images);
Ejemplo n.º 26
0
 public static extern IntPtr glfwSetJoystickCallback(WindowPtr window, JoystickConnectionCallback callback);
Ejemplo n.º 27
0
 public static extern void glfwSetWindowPos(WindowPtr window, int x, int y);
Ejemplo n.º 28
0
 public static extern void glfwSetClipboardString(WindowPtr window, string s);
Ejemplo n.º 29
0
 public static extern void glfwSetWindowSizeLimits(
     WindowPtr window,
     int minWidth, int minHeight,
     int maxWidth, int maxHeight
     );
Ejemplo n.º 30
0
 public static extern IntPtr glfwSetFramebufferSizeCallback(WindowPtr window, FramebufferSizeCallback callback);