Exemple #1
0
 internal static extern Glfw.Monitor glfwGetWindowMonitor(Glfw.Window window);
Exemple #2
0
 internal static extern void glfwSetWindowSize(Glfw.Window window, int width, int height);
Exemple #3
0
 internal static extern void glfwIconifyWindow(Glfw.Window window);
Exemple #4
0
 internal static extern void glfwSetWindowShouldClose(Glfw.Window window, int value);
Exemple #5
0
 internal static extern void glfwSetWindowPos(Glfw.Window window, int xpos, int ypos);
Exemple #6
0
 internal static extern void glfwSwapBuffers(Glfw.Window window);
Exemple #7
0
 internal static extern void glfwDestroyWindow(Glfw.Window window);
Exemple #8
0
 internal static extern void glfwSetFramebufferSizeCallback(Glfw.Window window, Glfw.SetFramebufferSizeCallbackDelegate cbfun);
Exemple #9
0
 internal static extern int glfwGetInputMode(Glfw.Window window, int mode);
Exemple #10
0
 internal static extern void glfwSetWindowRefreshCallback(Glfw.Window window, Glfw.SetWindowRefreshCallbackDelegate cbfun);
Exemple #11
0
 internal static extern void glfwSetWindowIconifyCallback(Glfw.Window window, Glfw.SetWindowIconifyCallbackDelegate cbfun);
Exemple #12
0
 internal static extern IntPtr glfwGetWindowUserPointer(Glfw.Window window);
Exemple #13
0
 internal static extern void glfwSetWindowUserPointer(Glfw.Window window, IntPtr pointer);
Exemple #14
0
 internal static extern int glfwGetWindowAttrib(Glfw.Window window, int attrib);
Exemple #15
0
 internal static extern void glfwSetClipboardString(Glfw.Window window, string str);
Exemple #16
0
 internal static extern void glfwSetInputMode(Glfw.Window window, int mode, int value);
Exemple #17
0
 internal static extern void glfwMakeContextCurrent(Glfw.Window window);
Exemple #18
0
 internal static extern int glfwGetKey(Glfw.Window window, int key);
Exemple #19
0
 internal static extern Glfw.Window glfwCreateWindow(int width, int height, string title, Glfw.Monitor monitor, Glfw.Window share);
Exemple #20
0
 internal static extern int glfwGetMouseButton(Glfw.Window window, int button);
Exemple #21
0
 internal static extern int glfwWindowShouldClose(Glfw.Window window);
Exemple #22
0
 internal static extern void glfwSetCursorPos(Glfw.Window window, double xpos, double ypos);
Exemple #23
0
 internal static extern void glfwSetWindowTitle(Glfw.Window window, string title);
Exemple #24
0
 internal static extern void glfwSetMouseButtonCallback(Glfw.Window window, Glfw.SetMouseButtonCallbackDelegate cbfun);
Exemple #25
0
 internal static extern void glfwGetWindowSize(Glfw.Window window, out int width, out int height);
Exemple #26
0
 internal static extern void glfwSetCursorEnterCallback(Glfw.Window window, Glfw.SetCursorEnterCallbackDelegate cbfun);
Exemple #27
0
 internal static extern void glfwGetFramebufferSize(Glfw.Window window, out int width, out int height);
Exemple #28
0
 internal static extern void glfwSetScrollCallback(Glfw.Window window, Glfw.SetScrollCallbackDelegate cbfun);
Exemple #29
0
 internal static extern void glfwRestoreWindow(Glfw.Window window);
Exemple #30
0
 internal static extern void glfwHideWindow(Glfw.Window window);