2010-09-07 15:34:51 +00:00
|
|
|
//========================================================================
|
|
|
|
// This is a small test application for GLFW.
|
|
|
|
// The program lists all available fullscreen video modes.
|
|
|
|
//========================================================================
|
|
|
|
|
2010-09-10 11:16:03 +00:00
|
|
|
#include <GL/glfw3.h>
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2011-09-19 18:36:01 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2011-09-19 18:36:01 +00:00
|
|
|
static void print_mode(GLFWvidmode* mode)
|
|
|
|
{
|
|
|
|
printf("%i x %i x %i (%i %i %i)\n",
|
|
|
|
mode->width, mode->height,
|
|
|
|
mode->redBits + mode->greenBits + mode->blueBits,
|
|
|
|
mode->redBits, mode->greenBits, mode->blueBits);
|
|
|
|
}
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2011-09-19 18:36:01 +00:00
|
|
|
int main(void)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2011-10-06 21:28:56 +00:00
|
|
|
GLFWmonitor monitor;
|
2011-09-19 18:36:01 +00:00
|
|
|
GLFWvidmode dtmode, modes[400];
|
|
|
|
int modecount, i;
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2011-09-19 18:36:01 +00:00
|
|
|
if (!glfwInit())
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2011-09-19 18:36:01 +00:00
|
|
|
fprintf(stderr, "Failed to initialize GLFW: %s\n", glfwErrorString(glfwGetError()));
|
|
|
|
exit(EXIT_FAILURE);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Show desktop video mode
|
2011-09-19 18:36:01 +00:00
|
|
|
glfwGetDesktopMode(&dtmode);
|
|
|
|
printf("Desktop mode: ");
|
|
|
|
print_mode(&dtmode);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2011-10-06 21:28:56 +00:00
|
|
|
monitor = NULL;
|
2011-05-07 08:53:50 +00:00
|
|
|
|
2011-10-06 21:28:56 +00:00
|
|
|
while ((monitor = glfwGetNextMonitor(monitor)))
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2011-10-06 21:28:56 +00:00
|
|
|
printf("Monitor name: %s\n"
|
|
|
|
"Physical dimensions: %dmm x %dmm\n"
|
|
|
|
"Logical position: (%d,%d)\n",
|
|
|
|
glfwGetMonitorString(monitor, GLFW_MONITOR_NAME),
|
|
|
|
glfwGetMonitorParam(monitor, GLFW_MONITOR_PHYSICAL_WIDTH),
|
|
|
|
glfwGetMonitorParam(monitor, GLFW_MONITOR_PHYSICAL_HEIGHT),
|
|
|
|
glfwGetMonitorParam(monitor, GLFW_MONITOR_SCREEN_POS_X),
|
|
|
|
glfwGetMonitorParam(monitor, GLFW_MONITOR_SCREEN_POS_Y));
|
|
|
|
|
2011-05-07 08:53:50 +00:00
|
|
|
// List available video modes
|
2011-10-06 21:28:56 +00:00
|
|
|
modecount = glfwGetVideoModes(monitor, modes, sizeof(modes) / sizeof(GLFWvidmode));
|
|
|
|
printf("Available modes:\n");
|
|
|
|
|
|
|
|
for (i = 0; i < modecount; i++)
|
2011-05-07 08:53:50 +00:00
|
|
|
{
|
|
|
|
printf("%3i: ", i);
|
|
|
|
print_mode(modes + i);
|
|
|
|
}
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
2011-10-06 21:28:56 +00:00
|
|
|
|
2011-09-19 18:36:01 +00:00
|
|
|
exit(EXIT_SUCCESS);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
2011-09-19 18:36:01 +00:00
|
|
|
|