Added primary status to monitor listing.

master
Camilla Berglund ago%!(EXTRA string=13 years)
parent 648655aa5b
commit 3610f0d071
  1. 4
      tests/modes.c

@ -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),

Loading…
Cancel
Save