glfw/tests/monitors.c

264 lines
7.6 KiB
C
Raw Permalink Normal View History

2012-03-08 00:01:42 +00:00
//========================================================================
2015-01-25 22:37:29 +00:00
// Monitor information tool
2016-11-21 15:23:59 +00:00
// Copyright (c) Camilla Löwy <elmindreda@glfw.org>
2012-03-08 00:01:42 +00:00
//
// 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.
//
//========================================================================
//
2015-01-25 22:37:29 +00:00
// This test prints monitor and video mode information or verifies video
// modes
2012-03-08 00:01:42 +00:00
//
//========================================================================
#define GLAD_GL_IMPLEMENTATION
#include <glad/gl.h>
#define GLFW_INCLUDE_NONE
#include <GLFW/glfw3.h>
2012-03-08 00:01:42 +00:00
#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"
enum Mode
{
LIST_MODE,
TEST_MODE
};
static void usage(void)
{
2015-01-25 22:37:29 +00:00
printf("Usage: monitors [-t]\n");
printf(" monitors -h\n");
2012-03-08 00:01:42 +00:00
}
static int euclid(int a, int b)
{
return b ? euclid(b, a % b) : a;
}
static const char* format_mode(const GLFWvidmode* mode)
2012-03-08 00:01:42 +00:00
{
2012-05-06 23:30:55 +00:00
static char buffer[512];
const int gcd = euclid(mode->width, mode->height);
2012-05-06 23:30:55 +00:00
2016-09-30 03:31:07 +00:00
snprintf(buffer,
sizeof(buffer),
"%i x %i x %i (%i:%i) (%i %i %i) %i Hz",
mode->width, mode->height,
mode->redBits + mode->greenBits + mode->blueBits,
mode->width / gcd, mode->height / gcd,
mode->redBits, mode->greenBits, mode->blueBits,
mode->refreshRate);
2012-05-06 23:30:55 +00:00
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 framebuffer_size_callback(GLFWwindow* window, int width, int height)
2012-03-08 00:01:42 +00:00
{
printf("Framebuffer resized to %ix%i\n", width, height);
2012-03-08 00:01:42 +00:00
glViewport(0, 0, width, height);
}
2013-05-30 15:19:12 +00:00
static void key_callback(GLFWwindow* window, int key, int scancode, int action, int mods)
2012-05-06 22:44:39 +00:00
{
if (key == GLFW_KEY_ESCAPE)
2015-08-23 17:30:04 +00:00
glfwSetWindowShouldClose(window, GLFW_TRUE);
2012-05-06 22:44:39 +00:00
}
static void list_modes(GLFWmonitor* monitor)
{
int count, x, y, width_mm, height_mm, i;
int workarea_x, workarea_y, workarea_width, workarea_height;
float xscale, yscale;
const GLFWvidmode* mode = glfwGetVideoMode(monitor);
const GLFWvidmode* modes = glfwGetVideoModes(monitor, &count);
glfwGetMonitorPos(monitor, &x, &y);
glfwGetMonitorPhysicalSize(monitor, &width_mm, &height_mm);
glfwGetMonitorContentScale(monitor, &xscale, &yscale);
glfwGetMonitorWorkarea(monitor, &workarea_x, &workarea_y, &workarea_width, &workarea_height);
printf("Name: %s (%s)\n",
glfwGetMonitorName(monitor),
glfwGetPrimaryMonitor() == monitor ? "primary" : "secondary");
printf("Current mode: %s\n", format_mode(mode));
2019-10-10 16:03:28 +00:00
printf("Virtual position: %i, %i\n", x, y);
printf("Content scale: %f x %f\n", xscale, yscale);
2012-10-18 21:09:28 +00:00
2019-10-10 16:03:28 +00:00
printf("Physical size: %i x %i mm (%0.2f dpi at %i x %i)\n",
width_mm, height_mm, mode->width * 25.4f / width_mm, mode->width, mode->height);
printf("Monitor work area: %i x %i starting at %i, %i\n",
workarea_width, workarea_height, workarea_x, workarea_y);
2012-08-30 00:12:02 +00:00
printf("Modes:\n");
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
2013-05-29 20:35:58 +00:00
if (memcmp(mode, modes + i, sizeof(GLFWvidmode)) == 0)
printf(" (current mode)");
2012-05-06 23:13:07 +00:00
2012-03-08 00:01:42 +00:00
putchar('\n');
}
}
static void test_modes(GLFWmonitor* monitor)
2012-03-08 00:01:42 +00:00
{
int i, count;
GLFWwindow* window;
const GLFWvidmode* modes = glfwGetVideoModes(monitor, &count);
2012-03-08 00:01:42 +00:00
for (i = 0; i < count; i++)
{
const GLFWvidmode* mode = modes + i;
GLFWvidmode current;
2012-05-06 22:33:21 +00:00
glfwWindowHint(GLFW_RED_BITS, mode->redBits);
glfwWindowHint(GLFW_GREEN_BITS, mode->greenBits);
glfwWindowHint(GLFW_BLUE_BITS, mode->blueBits);
glfwWindowHint(GLFW_REFRESH_RATE, mode->refreshRate);
2012-03-08 00:01:42 +00:00
2012-07-10 22:33:32 +00:00
printf("Testing mode %u on monitor %s: %s\n",
(unsigned int) i,
glfwGetMonitorName(monitor),
format_mode(mode));
2012-03-08 00:01:42 +00:00
window = glfwCreateWindow(mode->width, mode->height,
"Video Mode Test",
glfwGetPrimaryMonitor(),
NULL);
if (!window)
2012-03-08 00:01:42 +00:00
{
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;
}
glfwSetFramebufferSizeCallback(window, framebuffer_size_callback);
glfwSetKeyCallback(window, key_callback);
glfwMakeContextCurrent(window);
gladLoadGL(glfwGetProcAddress);
2012-03-08 00:01:42 +00:00
glfwSwapInterval(1);
glfwSetTime(0.0);
2012-03-08 00:01:42 +00:00
while (glfwGetTime() < 5.0)
{
glClear(GL_COLOR_BUFFER_BIT);
glfwSwapBuffers(window);
2012-03-08 00:01:42 +00:00
glfwPollEvents();
if (glfwWindowShouldClose(window))
2012-03-08 00:01:42 +00:00
{
printf("User terminated program\n");
glfwTerminate();
2012-03-08 00:01:42 +00:00
exit(EXIT_SUCCESS);
}
}
glGetIntegerv(GL_RED_BITS, &current.redBits);
glGetIntegerv(GL_GREEN_BITS, &current.greenBits);
glGetIntegerv(GL_BLUE_BITS, &current.blueBits);
glfwGetWindowSize(window, &current.width, &current.height);
if (current.redBits != mode->redBits ||
current.greenBits != mode->greenBits ||
current.blueBits != mode->blueBits)
2012-03-08 00:01:42 +00:00
{
printf("*** Color bit mismatch: (%i %i %i) instead of (%i %i %i)\n",
current.redBits, current.greenBits, current.blueBits,
mode->redBits, mode->greenBits, mode->blueBits);
2012-03-08 00:01:42 +00:00
}
if (current.width != mode->width || current.height != mode->height)
2012-03-08 00:01:42 +00:00
{
printf("*** Size mismatch: %ix%i instead of %ix%i\n",
current.width, current.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");
glfwDestroyWindow(window);
window = NULL;
2012-03-08 00:01:42 +00:00
glfwPollEvents();
}
}
int main(int argc, char** argv)
{
2012-09-12 17:35:52 +00:00
int ch, i, count, mode = LIST_MODE;
GLFWmonitor** monitors;
2012-03-08 00:01:42 +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);
}
}
glfwSetErrorCallback(error_callback);
glfwInitHint(GLFW_COCOA_MENUBAR, GLFW_FALSE);
2012-03-08 00:01:42 +00:00
if (!glfwInit())
exit(EXIT_FAILURE);
2012-09-12 17:35:52 +00:00
monitors = glfwGetMonitors(&count);
for (i = 0; i < count; i++)
{
if (mode == LIST_MODE)
2012-09-12 17:35:52 +00:00
list_modes(monitors[i]);
else if (mode == TEST_MODE)
2012-09-12 17:35:52 +00:00
test_modes(monitors[i]);
}
2012-03-08 00:01:42 +00:00
glfwTerminate();
2012-03-08 00:01:42 +00:00
exit(EXIT_SUCCESS);
}