1
0
Fork 0
mirror of https://github.com/gwm17/glfw.git synced 2024-10-08 15:17:25 -04:00
glfw/tests/listmodes.c

48 lines
1.2 KiB
C
Raw Normal View History

2010-09-07 11:34:51 -04:00
//========================================================================
// This is a small test application for GLFW.
// The program lists all available fullscreen video modes.
//========================================================================
#include <GL/glfw3.h>
2010-09-07 11:34:51 -04:00
2011-09-19 14:36:01 -04:00
#include <stdio.h>
#include <stdlib.h>
2010-09-07 11:34:51 -04:00
2011-09-19 14:36:01 -04: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 11:34:51 -04:00
2011-09-19 14:36:01 -04:00
int main(void)
2010-09-07 11:34:51 -04:00
{
2011-09-19 14:36:01 -04:00
GLFWvidmode dtmode, modes[400];
int modecount, i;
2010-09-07 11:34:51 -04:00
2012-02-07 08:58:58 -05:00
if (!glfwInit())
2010-09-07 11:34:51 -04:00
{
2011-09-19 14:36:01 -04:00
fprintf(stderr, "Failed to initialize GLFW: %s\n", glfwErrorString(glfwGetError()));
exit(EXIT_FAILURE);
2010-09-07 11:34:51 -04:00
}
// Show desktop video mode
2011-09-19 14:36:01 -04:00
glfwGetDesktopMode(&dtmode);
printf("Desktop mode: ");
print_mode(&dtmode);
2010-09-07 11:34:51 -04:00
// List available video modes
2011-09-19 14:36:01 -04:00
modecount = glfwGetVideoModes(modes, sizeof(modes) / sizeof(GLFWvidmode));
printf("Available modes:\n");
for (i = 0; i < modecount; i++)
2010-09-07 11:34:51 -04:00
{
2011-09-19 14:36:01 -04:00
printf("%3i: ", i);
print_mode(modes + i);
2010-09-07 11:34:51 -04:00
}
glfwTerminate();
2011-09-19 14:36:01 -04:00
exit(EXIT_SUCCESS);
2010-09-07 11:34:51 -04:00
}
2011-09-19 14:36:01 -04:00