Exemplo n.º 1
0
 internal static extern void glfwSetCursorPos(GlfwWindowPtr window, double xpos, double ypos);
Exemplo n.º 2
0
 internal static extern int glfwGetWindowAttrib(GlfwWindowPtr window, int param);
Exemplo n.º 3
0
 internal static extern IntPtr glfwGetWindowUserPointer(GlfwWindowPtr window);
Exemplo n.º 4
0
 internal static extern void glfwRestoreWindow(GlfwWindowPtr window);
Exemplo n.º 5
0
 internal static extern void glfwHideWindow(GlfwWindowPtr window);
Exemplo n.º 6
0
 internal static extern void glfwGetWindowPos(GlfwWindowPtr window, out int xpos, out int ypos);
Exemplo n.º 7
0
 internal static extern void glfwSetWindowSize(GlfwWindowPtr window, int width, int height);
Exemplo n.º 8
0
 internal static extern void glfwSetClipboardString(GlfwWindowPtr window, [MarshalAs(UnmanagedType.LPStr)] string @string);
Exemplo n.º 9
0
 internal static extern sbyte *glfwGetClipboardString(GlfwWindowPtr window);
Exemplo n.º 10
0
 internal static extern GlfwCursorEnterFun glfwSetCursorEnterCallback(GlfwWindowPtr window, GlfwCursorEnterFun cbfun);
Exemplo n.º 11
0
 internal static extern GlfwScrollFun glfwSetScrollCallback(GlfwWindowPtr window, GlfwScrollFun cbfun);
Exemplo n.º 12
0
 internal static extern GlfwMouseButtonFun glfwSetMouseButtonCallback(GlfwWindowPtr window, GlfwMouseButtonFun cbfun);
Exemplo n.º 13
0
 internal static extern GlfwCharFun glfwSetCharCallback(GlfwWindowPtr window, GlfwCharFun cbfun);
Exemplo n.º 14
0
 internal static extern GlfwKeyFun glfwSetKeyCallback(GlfwWindowPtr window, GlfwKeyFun cbfun);
Exemplo n.º 15
0
 internal static extern void glfwSetWindowShouldClose(GlfwWindowPtr window, int value);
Exemplo n.º 16
0
 internal static extern void glfwMakeContextCurrent(GlfwWindowPtr window);
Exemplo n.º 17
0
 internal static extern void glfwSetWindowTitle(GlfwWindowPtr window, [MarshalAs(UnmanagedType.LPStr)] string title);
Exemplo n.º 18
0
 internal static extern void glfwSwapBuffers(GlfwWindowPtr window);
Exemplo n.º 19
0
 internal static extern void glfwSetWindowPos(GlfwWindowPtr window, int xpos, int ypos);
Exemplo n.º 20
0
 internal static extern void glfwGetFramebufferSize(GlfwWindowPtr window, out int width, out int height);
Exemplo n.º 21
0
 internal static extern void glfwIconifyWindow(GlfwWindowPtr window);
Exemplo n.º 22
0
 internal static extern GlfwFramebufferSizeFun glfwSetFramebufferSizeCallback(GlfwWindowPtr window, GlfwFramebufferSizeFun cbfun);
Exemplo n.º 23
0
 internal static extern void glfwShowWindow(GlfwWindowPtr window);
Exemplo n.º 24
0
 internal static extern GlfwWindowPtr glfwCreateWindow(int width, int height, [MarshalAs(UnmanagedType.LPStr)] string title, GlfwMonitorPtr monitor, GlfwWindowPtr share);
Exemplo n.º 25
0
 internal static extern GlfwMonitorPtr glfwGetWindowMonitor(GlfwWindowPtr window);
Exemplo n.º 26
0
 internal static extern void glfwDestroyWindow(GlfwWindowPtr window);
Exemplo n.º 27
0
 internal static extern void glfwSetWindowUserPointer(GlfwWindowPtr window, IntPtr pointer);
Exemplo n.º 28
0
 internal static extern int glfwWindowShouldClose(GlfwWindowPtr window);
Exemplo n.º 29
0
 internal static extern GlfwWindowPosFun glfwSetWindowPosCallback(GlfwWindowPtr window, GlfwWindowPosFun cbfun);
Exemplo n.º 30
0
 internal static extern int glfwGetMouseButton(GlfwWindowPtr window, MouseButton button);