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