Make reopen test use the GLFW_FULLSCREEN hint

This commit is contained in:
Eden Salomon 2015-10-22 21:09:15 +03:00
parent f5880769fe
commit 68a4687f94

View File

@ -76,6 +76,8 @@ static GLFWwindow* open_window(int width, int height, GLFWmonitor* monitor)
base = glfwGetTime();
glfwWindowHint(GLFW_FULLSCREEN, monitor ? GLFW_TRUE : GLFW_FALSE);
window = glfwCreateWindow(width, height, "Window Re-opener", monitor, NULL);
if (!window)
return NULL;