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