1
0
Fork 0
mirror of https://github.com/gwm17/glfw.git synced 2024-10-08 07:07:25 -04:00

Added primary status to monitor listing.

This commit is contained in:
Camilla Berglund 2012-12-22 23:37:42 +01:00
parent 648655aa5b
commit 3610f0d071

View File

@ -98,7 +98,9 @@ static void list_modes(GLFWmonitor monitor)
glfwGetVideoMode(monitor, &mode);
printf("Name: %s\n", glfwGetMonitorName(monitor));
printf("Name: %s (%s)\n",
glfwGetMonitorName(monitor),
glfwGetPrimaryMonitor() == monitor ? "primary" : "secondary");
printf("Current mode: %s\n", format_mode(&mode));
printf("Virtual position: %i %i\n",
glfwGetMonitorParam(monitor, GLFW_MONITOR_POS_X),