Opening a fullscreen OpenGL window
I am tring to open an OpenGL full screen window using GLFW on linux red-hat. I have a desktop that spans two monitors with total resolution of 3840*1080. I have two problems: 1. The window is opened just on one monitor with maximum window width of 1920 (the width of a single monitor). 2. The maximum height of the window is 1003 (which I think is the height of the screen minus the height of the task bar and the top bar). This is the code I use to open the window: if (glfwInit() == GL_FALSE) std::cout<< "Unable to initialize GLFW\n"; glfwOpenWindowHint(GLFW_STEREO, GL_FALSE); if (glfwOpenWindow