Exemple #1
0
 public static extern void glfwSetWindowIcon(Window *window, int count, Image *images);
Exemple #2
0
 public static extern void glfwGetCursorPos(Window *window, double *xpos, double *ypos);
Exemple #3
0
 public static extern void glfwSetCursor(Window *window, Cursor *cursor);
Exemple #4
0
 public static extern void glfwRequestWindowAttention(Window *window);
Exemple #5
0
 public static extern InputAction glfwGetKey(Window *window, Keys key);
Exemple #6
0
 public static extern void glfwGetWindowFrameSize(Window *window, int *left, int *top, int *right, int *bottom);
Exemple #7
0
 public static extern float glfwGetWindowOpacity(Window *window);
Exemple #8
0
 public static extern void glfwSetWindowSize(Window *window, int width, int height);
Exemple #9
0
 public static extern IntPtr glfwSetWindowSizeCallback(Window *window, IntPtr callback);
Exemple #10
0
 public static extern void glfwSetWindowTitle(Window *window, byte *title);
Exemple #11
0
 public static extern void glfwShowWindow(Window *window);
Exemple #12
0
 public static extern IntPtr glfwSetWindowContentScaleCallback(Window *window, IntPtr callback);
Exemple #13
0
 public static extern IntPtr glfwSetFramebufferSizeCallback(Window *window, IntPtr callback);
Exemple #14
0
 public static extern IntPtr glfwSetWindowIconifyCallback(Window *window, IntPtr callback);
Exemple #15
0
 public static extern void glfwSetWindowSizeLimits(Window *window, int minwidth, int minheight, int maxwidth, int maxheight);
Exemple #16
0
 public static extern void glfwSetWindowShouldClose(Window *window, int value);
Exemple #17
0
 public static extern void glfwSetWindowAspectRatio(Window *window, int numer, int denom);
Exemple #18
0
 public static extern void glfwSetWindowMonitor(Window *window, Monitor *monitor, int x, int y, int width, int height, int refreshRate);
Exemple #19
0
 public static extern void glfwGetWindowContentScale(Window *window, float *xscale, float *yscale);
Exemple #20
0
 public static extern void glfwSetWindowPos(Window *window, int x, int y);
Exemple #21
0
 public static extern void glfwSetWindowOpacity(Window *window, float opacity);
Exemple #22
0
 public static extern IntPtr glfwSetWindowRefreshCallback(Window *window, IntPtr callback);
Exemple #23
0
 public static extern void glfwSetWindowAttrib(Window *window, WindowAttribute attrib, int value);
Exemple #24
0
 public static extern byte *glfwGetClipboardString(Window *window);
Exemple #25
0
 public static extern InputAction glfwGetMouseButton(Window *window, MouseButton button);
Exemple #26
0
 public static extern void glfwSetClipboardString(Window *window, byte *data);
Exemple #27
0
 public static extern void glfwSetCursorPos(Window *window, double xpos, double ypos);
Exemple #28
0
 public static extern int glfwCreateWindowSurface(VkHandle instance, Window *window, void *allocator, VkHandle surface);
Exemple #29
0
 public static extern void glfwSwapBuffers(Window *window);
Exemple #30
0
 public static extern IntPtr glfwSetMouseButtonCallback(Window *window, IntPtr callback);