2012-03-08 00:01:42 +00:00
|
|
|
//========================================================================
|
|
|
|
// Video mode test
|
|
|
|
// Copyright (c) Camilla Berglund <elmindreda@elmindreda.org>
|
|
|
|
//
|
|
|
|
// This software is provided 'as-is', without any express or implied
|
|
|
|
// warranty. In no event will the authors be held liable for any damages
|
|
|
|
// arising from the use of this software.
|
|
|
|
//
|
|
|
|
// Permission is granted to anyone to use this software for any purpose,
|
|
|
|
// including commercial applications, and to alter it and redistribute it
|
|
|
|
// freely, subject to the following restrictions:
|
|
|
|
//
|
|
|
|
// 1. The origin of this software must not be misrepresented; you must not
|
|
|
|
// claim that you wrote the original software. If you use this software
|
|
|
|
// in a product, an acknowledgment in the product documentation would
|
|
|
|
// be appreciated but is not required.
|
|
|
|
//
|
|
|
|
// 2. Altered source versions must be plainly marked as such, and must not
|
|
|
|
// be misrepresented as being the original software.
|
|
|
|
//
|
|
|
|
// 3. This notice may not be removed or altered from any source
|
|
|
|
// distribution.
|
|
|
|
//
|
|
|
|
//========================================================================
|
|
|
|
//
|
|
|
|
// This test enumerates or verifies video modes
|
|
|
|
//
|
|
|
|
//========================================================================
|
|
|
|
|
|
|
|
#include <GL/glfw3.h>
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2012-05-06 23:13:07 +00:00
|
|
|
#include <string.h>
|
2012-03-08 00:01:42 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include "getopt.h"
|
|
|
|
|
|
|
|
static GLFWwindow window = NULL;
|
|
|
|
|
|
|
|
enum Mode
|
|
|
|
{
|
|
|
|
LIST_MODE,
|
|
|
|
TEST_MODE
|
|
|
|
};
|
|
|
|
|
|
|
|
static void usage(void)
|
|
|
|
{
|
2012-05-06 22:29:36 +00:00
|
|
|
printf("Usage: modes [-t]\n");
|
2012-03-08 00:01:42 +00:00
|
|
|
printf(" modes -h\n");
|
|
|
|
}
|
|
|
|
|
2012-05-06 23:30:55 +00:00
|
|
|
static const char* format_mode(GLFWvidmode* mode)
|
2012-03-08 00:01:42 +00:00
|
|
|
{
|
2012-05-06 23:30:55 +00:00
|
|
|
static char buffer[512];
|
|
|
|
|
|
|
|
snprintf(buffer, sizeof(buffer),
|
|
|
|
"%i x %i x %i (%i %i %i)",
|
|
|
|
mode->width, mode->height,
|
|
|
|
mode->redBits + mode->greenBits + mode->blueBits,
|
|
|
|
mode->redBits, mode->greenBits, mode->blueBits);
|
|
|
|
|
|
|
|
buffer[sizeof(buffer) - 1] = '\0';
|
|
|
|
return buffer;
|
2012-03-08 00:01:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void error_callback(int error, const char* description)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "Error: %s\n", description);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void window_size_callback(GLFWwindow window, int width, int height)
|
|
|
|
{
|
|
|
|
printf("Window resized to %ix%i\n", width, height);
|
|
|
|
|
|
|
|
glViewport(0, 0, width, height);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int window_close_callback(GLFWwindow dummy)
|
|
|
|
{
|
|
|
|
window = NULL;
|
|
|
|
return GL_TRUE;
|
|
|
|
}
|
|
|
|
|
2012-05-06 22:44:39 +00:00
|
|
|
static void key_callback(GLFWwindow dummy, int key, int action)
|
|
|
|
{
|
|
|
|
if (key == GLFW_KEY_ESCAPE)
|
|
|
|
{
|
|
|
|
glfwCloseWindow(window);
|
|
|
|
window = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-05 14:15:01 +00:00
|
|
|
static GLFWvidmode* get_video_modes(GLFWmonitor monitor, size_t* found)
|
2012-03-08 00:01:42 +00:00
|
|
|
{
|
2012-05-06 23:12:08 +00:00
|
|
|
size_t count = 0;
|
|
|
|
GLFWvidmode* modes = NULL;
|
|
|
|
|
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
count += 256;
|
|
|
|
modes = realloc(modes, sizeof(GLFWvidmode) * count);
|
|
|
|
|
2012-07-05 14:15:01 +00:00
|
|
|
*found = glfwGetVideoModes(monitor, modes, count);
|
2012-05-06 23:12:08 +00:00
|
|
|
if (*found < count)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return modes;
|
|
|
|
}
|
2012-03-08 00:01:42 +00:00
|
|
|
|
2012-07-05 14:15:01 +00:00
|
|
|
static void list_modes(GLFWmonitor monitor)
|
2012-05-06 23:12:08 +00:00
|
|
|
{
|
|
|
|
size_t count, i;
|
|
|
|
GLFWvidmode desktop_mode;
|
|
|
|
|
|
|
|
glfwGetDesktopMode(&desktop_mode);
|
2012-05-06 23:30:55 +00:00
|
|
|
printf("Desktop mode: %s\n", format_mode(&desktop_mode));
|
2012-03-08 00:01:42 +00:00
|
|
|
|
2012-07-05 14:15:01 +00:00
|
|
|
GLFWvidmode* modes = get_video_modes(monitor, &count);
|
|
|
|
|
|
|
|
printf("Monitor %s:\n", glfwGetMonitorString(monitor, GLFW_MONITOR_NAME));
|
2012-05-06 22:32:03 +00:00
|
|
|
|
2012-03-08 00:01:42 +00:00
|
|
|
for (i = 0; i < count; i++)
|
|
|
|
{
|
2012-05-06 23:30:55 +00:00
|
|
|
printf("%3u: %s", (unsigned int) i, format_mode(modes + i));
|
2012-05-06 23:13:07 +00:00
|
|
|
|
|
|
|
if (memcmp(&desktop_mode, modes + i, sizeof(GLFWvidmode)) == 0)
|
|
|
|
printf(" (desktop mode)");
|
|
|
|
|
2012-03-08 00:01:42 +00:00
|
|
|
putchar('\n');
|
|
|
|
}
|
2012-05-06 23:12:08 +00:00
|
|
|
|
|
|
|
free(modes);
|
2012-03-08 00:01:42 +00:00
|
|
|
}
|
|
|
|
|
2012-07-05 14:15:01 +00:00
|
|
|
static void test_modes(GLFWmonitor monitor)
|
2012-03-08 00:01:42 +00:00
|
|
|
{
|
2012-05-06 23:12:08 +00:00
|
|
|
int width, height;
|
|
|
|
size_t i, count;
|
2012-07-05 14:15:01 +00:00
|
|
|
GLFWvidmode* modes = get_video_modes(monitor, &count);
|
2012-03-08 00:01:42 +00:00
|
|
|
|
|
|
|
glfwSetWindowSizeCallback(window_size_callback);
|
|
|
|
glfwSetWindowCloseCallback(window_close_callback);
|
2012-05-06 22:44:39 +00:00
|
|
|
glfwSetKeyCallback(key_callback);
|
2012-03-08 00:01:42 +00:00
|
|
|
|
|
|
|
for (i = 0; i < count; i++)
|
|
|
|
{
|
2012-05-06 22:33:21 +00:00
|
|
|
GLFWvidmode* mode = modes + i;
|
|
|
|
|
|
|
|
glfwOpenWindowHint(GLFW_RED_BITS, mode->redBits);
|
|
|
|
glfwOpenWindowHint(GLFW_GREEN_BITS, mode->greenBits);
|
|
|
|
glfwOpenWindowHint(GLFW_BLUE_BITS, mode->blueBits);
|
2012-03-08 00:01:42 +00:00
|
|
|
|
2012-07-05 14:15:01 +00:00
|
|
|
printf("Testing mode %u on monitor %s: %s",
|
|
|
|
(unsigned int) i,
|
|
|
|
glfwGetMonitorString(monitor, GLFW_MONITOR_NAME),
|
|
|
|
format_mode(mode));
|
2012-03-08 00:01:42 +00:00
|
|
|
|
2012-05-06 22:33:21 +00:00
|
|
|
window = glfwOpenWindow(mode->width, mode->height,
|
2012-03-08 00:01:42 +00:00
|
|
|
GLFW_FULLSCREEN, "Video Mode Test",
|
|
|
|
NULL);
|
|
|
|
if (!window)
|
|
|
|
{
|
2012-05-06 23:30:55 +00:00
|
|
|
printf("Failed to enter mode %u: %s\n",
|
|
|
|
(unsigned int) i,
|
|
|
|
format_mode(mode));
|
2012-03-08 00:01:42 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
glfwSetTime(0.0);
|
|
|
|
glfwSwapInterval(1);
|
|
|
|
|
|
|
|
while (glfwGetTime() < 5.0)
|
|
|
|
{
|
|
|
|
glClear(GL_COLOR_BUFFER_BIT);
|
|
|
|
glfwSwapBuffers();
|
|
|
|
glfwPollEvents();
|
|
|
|
|
|
|
|
if (!window)
|
|
|
|
{
|
|
|
|
printf("User terminated program\n");
|
|
|
|
exit(EXIT_SUCCESS);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-05-06 22:33:21 +00:00
|
|
|
if (glfwGetWindowParam(window, GLFW_RED_BITS) != mode->redBits ||
|
|
|
|
glfwGetWindowParam(window, GLFW_GREEN_BITS) != mode->greenBits ||
|
|
|
|
glfwGetWindowParam(window, GLFW_BLUE_BITS) != mode->blueBits)
|
2012-03-08 00:01:42 +00:00
|
|
|
{
|
|
|
|
printf("*** Color bit mismatch: (%i %i %i) instead of (%i %i %i)\n",
|
|
|
|
glfwGetWindowParam(window, GLFW_RED_BITS),
|
|
|
|
glfwGetWindowParam(window, GLFW_GREEN_BITS),
|
|
|
|
glfwGetWindowParam(window, GLFW_BLUE_BITS),
|
2012-05-06 22:33:21 +00:00
|
|
|
mode->redBits,
|
|
|
|
mode->greenBits,
|
|
|
|
mode->blueBits);
|
2012-03-08 00:01:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
glfwGetWindowSize(window, &width, &height);
|
|
|
|
|
2012-05-06 22:33:21 +00:00
|
|
|
if (width != mode->width || height != mode->height)
|
2012-03-08 00:01:42 +00:00
|
|
|
{
|
|
|
|
printf("*** Size mismatch: %ix%i instead of %ix%i\n",
|
|
|
|
width, height,
|
2012-05-06 22:33:21 +00:00
|
|
|
mode->width, mode->height);
|
2012-03-08 00:01:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
printf("Closing window\n");
|
|
|
|
|
|
|
|
glfwCloseWindow(window);
|
|
|
|
glfwPollEvents();
|
|
|
|
window = NULL;
|
|
|
|
}
|
2012-05-06 23:12:08 +00:00
|
|
|
|
|
|
|
free(modes);
|
2012-03-08 00:01:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char** argv)
|
|
|
|
{
|
2012-05-06 23:12:08 +00:00
|
|
|
int ch, mode = LIST_MODE;
|
2012-07-05 14:15:01 +00:00
|
|
|
GLFWmonitor monitor = NULL;
|
2012-03-08 00:01:42 +00:00
|
|
|
|
2012-05-06 22:29:36 +00:00
|
|
|
while ((ch = getopt(argc, argv, "th")) != -1)
|
2012-03-08 00:01:42 +00:00
|
|
|
{
|
|
|
|
switch (ch)
|
|
|
|
{
|
|
|
|
case 'h':
|
|
|
|
usage();
|
|
|
|
exit(EXIT_SUCCESS);
|
|
|
|
case 't':
|
|
|
|
mode = TEST_MODE;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
argc -= optind;
|
|
|
|
argv += optind;
|
|
|
|
|
|
|
|
glfwSetErrorCallback(error_callback);
|
|
|
|
|
|
|
|
if (!glfwInit())
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
|
2012-07-05 14:15:01 +00:00
|
|
|
while ((monitor = glfwGetNextMonitor(monitor)))
|
|
|
|
{
|
|
|
|
if (mode == LIST_MODE)
|
|
|
|
list_modes(monitor);
|
|
|
|
else if (mode == TEST_MODE)
|
|
|
|
test_modes(monitor);
|
|
|
|
}
|
2012-03-08 00:01:42 +00:00
|
|
|
|
|
|
|
exit(EXIT_SUCCESS);
|
|
|
|
}
|
|
|
|
|