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