[Tizen] Support Autoconf 2.71
[platform/upstream/SDL.git] / test / testdisplayinfo.c
1 /*
2   Copyright (C) 1997-2020 Sam Lantinga <slouken@libsdl.org>
3
4   This software is provided 'as-is', without any express or implied
5   warranty.  In no event will the authors be held liable for any damages
6   arising from the use of this software.
7
8   Permission is granted to anyone to use this software for any purpose,
9   including commercial applications, and to alter it and redistribute it
10   freely.
11 */
12
13 /* Program to test querying of display info */
14
15 #include "SDL.h"
16
17 #include <stdio.h>
18 #include <stdlib.h>
19
20 static void
21 print_mode(const char *prefix, const SDL_DisplayMode *mode)
22 {
23     if (!mode)
24         return;
25
26     SDL_Log("%s: fmt=%s w=%d h=%d refresh=%d\n",
27             prefix, SDL_GetPixelFormatName(mode->format),
28             mode->w, mode->h, mode->refresh_rate);
29 }
30 int
31 main(int argc, char *argv[])
32 {
33     SDL_DisplayMode mode;
34     int num_displays, dpy;
35
36     /* Enable standard application logging */
37     SDL_LogSetPriority(SDL_LOG_CATEGORY_APPLICATION, SDL_LOG_PRIORITY_INFO);
38
39     /* Load the SDL library */
40     if (SDL_Init(SDL_INIT_VIDEO) < 0) {
41         SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Couldn't initialize SDL: %s\n", SDL_GetError());
42         return 1;
43     }
44
45     SDL_Log("Using video target '%s'.\n", SDL_GetCurrentVideoDriver());
46     num_displays = SDL_GetNumVideoDisplays();
47
48     SDL_Log("See %d displays.\n", num_displays);
49
50     for (dpy = 0; dpy < num_displays; dpy++) {
51         const int num_modes = SDL_GetNumDisplayModes(dpy);
52         SDL_Rect rect = { 0, 0, 0, 0 };
53         float ddpi, hdpi, vdpi;
54         int m;
55
56         SDL_GetDisplayBounds(dpy, &rect);
57         SDL_Log("%d: \"%s\" (%dx%d, (%d, %d)), %d modes.\n", dpy, SDL_GetDisplayName(dpy), rect.w, rect.h, rect.x, rect.y, num_modes);
58
59         if (SDL_GetDisplayDPI(dpy, &ddpi, &hdpi, &vdpi) == -1) {
60             SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "    DPI: failed to query (%s)\n", SDL_GetError());
61         } else {
62             SDL_Log("    DPI: ddpi=%f; hdpi=%f; vdpi=%f\n", ddpi, hdpi, vdpi);
63         }
64
65         if (SDL_GetCurrentDisplayMode(dpy, &mode) == -1) {
66             SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "    CURRENT: failed to query (%s)\n", SDL_GetError());
67         } else {
68             print_mode("CURRENT", &mode);
69         }
70
71         if (SDL_GetDesktopDisplayMode(dpy, &mode) == -1) {
72             SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "    DESKTOP: failed to query (%s)\n", SDL_GetError());
73         } else {
74             print_mode("DESKTOP", &mode);
75         }
76
77         for (m = 0; m < num_modes; m++) {
78             if (SDL_GetDisplayMode(dpy, m, &mode) == -1) {
79                 SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "    MODE %d: failed to query (%s)\n", m, SDL_GetError());
80             } else {
81                 char prefix[64];
82                 SDL_snprintf(prefix, sizeof (prefix), "    MODE %d", m);
83                 print_mode(prefix, &mode);
84             }
85         }
86
87         SDL_Log("\n");
88     }
89
90     SDL_Quit();
91     return 0;
92 }
93
94 /* vi: set ts=4 sw=4 expandtab: */
95