SDL 2.0
testbounds.c File Reference
#include "SDL.h"
+ Include dependency graph for testbounds.c:

Go to the source code of this file.

Functions

int main (int argc, char **argv)
 

Function Documentation

◆ main()

int main ( int  argc,
char **  argv 
)

Definition at line 15 of file testbounds.c.

16{
17 int total, i;
18
19 if (SDL_Init(SDL_INIT_VIDEO) < 0) {
20 SDL_Log("SDL_Init(SDL_INIT_VIDEO) failed: %s", SDL_GetError());
21 return 1;
22 }
23
25 for (i = 0; i < total; i++) {
26 SDL_Rect bounds = { -1,-1,-1,-1 }, usable = { -1,-1,-1,-1 };
27 SDL_GetDisplayBounds(i, &bounds);
29 SDL_Log("Display #%d ('%s'): bounds={(%d,%d),%dx%d}, usable={(%d,%d),%dx%d}",
31 bounds.x, bounds.y, bounds.w, bounds.h,
32 usable.x, usable.y, usable.w, usable.h);
33 }
34
35 SDL_Quit();
36 return 0;
37}
#define SDL_INIT_VIDEO
Definition: SDL.h:79
#define SDL_GetError
#define SDL_GetDisplayName
#define SDL_Quit
#define SDL_Init
#define SDL_GetNumVideoDisplays
#define SDL_GetDisplayBounds
#define SDL_Log
#define SDL_GetDisplayUsableBounds
return Display return Display Bool Bool int int int return Display XEvent Bool(*) XPointer return Display return Display Drawable _Xconst char unsigned int unsigned int return Display Pixmap Pixmap XColor XColor unsigned int unsigned int return Display _Xconst char char int char return Display Visual unsigned int int int char unsigned int unsigned int in i)
Definition: SDL_x11sym.h:50
A rectangle, with the origin at the upper left (integer).
Definition: SDL_rect.h:78
int h
Definition: SDL_rect.h:80
int w
Definition: SDL_rect.h:80
int y
Definition: SDL_rect.h:79
int x
Definition: SDL_rect.h:79

References SDL_Rect::h, i, SDL_GetDisplayBounds, SDL_GetDisplayName, SDL_GetDisplayUsableBounds, SDL_GetError, SDL_GetNumVideoDisplays, SDL_Init, SDL_INIT_VIDEO, SDL_Log, SDL_Quit, SDL_Rect::w, SDL_Rect::x, and SDL_Rect::y.