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