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-09-19 18:36:01 +00:00
|
|
|
GLFWvidmode dtmode, modes[400];
|
|
|
|
int modecount, i;
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2012-02-07 13:58:58 +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
|
|
|
|
|
|
|
// List available video modes
|
2011-09-19 18:36:01 +00:00
|
|
|
modecount = glfwGetVideoModes(modes, sizeof(modes) / sizeof(GLFWvidmode));
|
|
|
|
printf("Available modes:\n");
|
|
|
|
for (i = 0; i < modecount; i++)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2011-09-19 18:36:01 +00:00
|
|
|
printf("%3i: ", i);
|
|
|
|
print_mode(modes + i);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
glfwTerminate();
|
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
|
|
|
|