From 56959bd075f2bbde3141dc954c05ce144fc9926c Mon Sep 17 00:00:00 2001 From: Camilla Berglund Date: Mon, 19 Sep 2011 20:36:01 +0200 Subject: [PATCH] Added channel sizes and formatting. --- tests/listmodes.c | 53 +++++++++++++++++++++++------------------------ 1 file changed, 26 insertions(+), 27 deletions(-) diff --git a/tests/listmodes.c b/tests/listmodes.c index 9fc7913b..a4648ef6 100644 --- a/tests/listmodes.c +++ b/tests/listmodes.c @@ -3,46 +3,45 @@ // The program lists all available fullscreen video modes. //======================================================================== -#include #include -// Maximum number of modes that we want to list -#define MAX_NUM_MODES 400 +#include +#include - -//======================================================================== -// main() -//======================================================================== - -int main( void ) +static void print_mode(GLFWvidmode* mode) { - GLFWvidmode dtmode, modes[ MAX_NUM_MODES ]; - int modecount, i; + 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); +} - // Initialize GLFW - if( !glfwInit() ) +int main(void) +{ + GLFWvidmode dtmode, modes[400]; + int modecount, i; + + if (!glfwInit()) { - return 0; + fprintf(stderr, "Failed to initialize GLFW: %s\n", glfwErrorString(glfwGetError())); + exit(EXIT_FAILURE); } // Show desktop video mode - glfwGetDesktopMode( &dtmode ); - printf( "Desktop mode: %d x %d x %d\n\n", - dtmode.width, dtmode.height, dtmode.redBits + - dtmode.greenBits + dtmode.blueBits ); + glfwGetDesktopMode(&dtmode); + printf("Desktop mode: "); + print_mode(&dtmode); // List available video modes - modecount = glfwGetVideoModes( modes, MAX_NUM_MODES ); - printf( "Available modes:\n" ); - for( i = 0; i < modecount; i ++ ) + modecount = glfwGetVideoModes(modes, sizeof(modes) / sizeof(GLFWvidmode)); + printf("Available modes:\n"); + for (i = 0; i < modecount; i++) { - printf( "%3d: %d x %d x %d\n", i, - modes[i].width, modes[i].height, modes[i].redBits + - modes[i].greenBits + modes[i].blueBits ); + printf("%3i: ", i); + print_mode(modes + i); } - // Terminate GLFW glfwTerminate(); - - return 0; + exit(EXIT_SUCCESS); } +