1. glfw与窗口有关的库 glfwSetWindowPos(Window*, int, int )-----设置window窗口的位置 GLFWwindow* glfwCreateWindow(int width, int height, const char * title, GLFWmonitor * monitor, GLFWwindow * share); //示例,GLFW库全屏窗口 bool isFullScreen = true; GLFWmonitor* pMonitor = isFullScreen ? glfwGetPrimaryMonitor() : NULL; GLFWwindow* window = glfwCreateWindow(WIDTH, HEIGHT, “Holographic projection”, pMonitor, NULL);