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